-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 947 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
34
35
36
37
38
39
40
41
42
{
"name": "blockbox-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">= 12.4.0",
"npm": ">= 6.9.0"
},
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node ./build/index.js"
},
"husky": {
"hooks": {
"pre-push": "yarn build"
}
},
"author": "Jay Shrivastava and Twinkle Mehta",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"mongoose": "^5.4.20",
"swagger-ui-express": "^4.0.2"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/debug": "^4.1.3",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.24",
"@types/swagger-ui-express": "^3.0.0",
"husky": "^1.3.1",
"nodemon": "^1.18.10",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
}
}