-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 KB
/
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
43
{
"name": "node-express-boilerplate",
"version": "1.0.0",
"description": "Node Boiler plate",
"scripts": {
"dev": "ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-ts": "tsc -w",
"watch-node": "nodemon build/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"author": "sijan shrestha <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"compression": "^1.7.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"es6-promise": "^4.2.6",
"express": "^4.16.4",
"express-validation": "^1.0.2",
"http-status": "^1.3.1",
"joi": "^14.3.1",
"mongoose": "^5.4.19",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.21",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"tslint-microsoft-contrib": "^6.1.0",
"typescript": "^3.3.3333"
}
}