- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
28 lines (28 loc) · 675 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 675 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
{
"name": "node-typescript-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ts" : "tsc -w",
"server" : "nodemon ./build/index.js",
"start" : "tsc && node ./build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.0",
"@types/mongoose": "^5.2.17",
"@types/node": "^10.11.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"helmet": "^3.13.0",
"mongoose": "^5.3.0",
"morgan": "^1.9.1",
"typescript": "^3.1.1"
}
}