-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 853 Bytes
/
package.json
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
{
"name": "typescript-api",
"version": "1.0.0",
"description": "Test API using Typescript",
"main": "index.js",
"scripts": {
"serve": "npx tsc --watch | npx nodemon --watch build --exec 'node ./build/server.js'",
"build": "tsc",
"clean": "rm -rf ./build"
},
"author": "Ryan Paulsen",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^3.21.2",
"mongoose": "^5.7.5",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/helmet": "0.0.43",
"@types/mongodb": "^3.3.7",
"@types/mongoose": "^5.5.28",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0"
}
}