-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "node-boilerplate",
"version": "1.0.0",
"description": "Node, express boilerplate",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc -p ./tsconfig.json",
"watch": "rm -rf ./build && tsc -p ./tsconfig.json --watch",
"start": "node ./build/start.js"
},
"engines": {
"node": "16.6.1",
"npm": "7.20.5"
},
"author": "Benjamin Goldstein",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/node": "^16.4.13",
"@types/uuid": "^8.3.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}