-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 946 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "crud-typescript",
"version": "1.0.0",
"description": "CRUD REST API using TypeScript, PostgreSQL, and TypeOrm",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Siddhant-K-code/CRUD-TypeScript.git"
},
"keywords": [
"CRUD",
"REST",
"API",
"TypeScript",
"PostgreSQL",
"TypeOrm",
"Dockerize",
"Docker",
"Container"
],
"author": "Siddhant Khare",
"license": "ISC",
"bugs": {
"url": "https://github.com/Siddhant-K-code/CRUD-TypeScript/issues"
},
"homepage": "https://github.com/Siddhant-K-code/CRUD-TypeScript#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.7.10",
"typescript": "^4.4.2"
},
"dependencies": {
"express": "^4.17.1",
"pg": "^8.7.1",
"typeorm": "^0.2.37"
}
}