forked from blove/typescript-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 839 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": "aserver",
"description": "The tour of heros",
"version": "1.0.0",
"private": true,
"author": "Brian Love",
"scripts": {
"dev": "NODE_ENV=development nodemon ./bin/www",
"grunt": "grunt",
"start": "node ./bin/www"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"morgan": "^1.9.0",
"pug": "^2.0.0-rc.4"
},
"devDependencies": {
"@types/body-parser": "1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/method-override": "0.0.31",
"@types/morgan": "^1.7.35",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.17",
"nodemon": "^1.12.1",
"typescript": "^2.6.1"
}
}