forked from blove/typescript-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 871 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
{
"name": "heros",
"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.15.2",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"method-override": "^2.3.6",
"morgan": "^1.7.0",
"pug": "^2.0.0-beta6"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/errorhandler": "0.0.30",
"@types/method-override": "0.0.29",
"@types/morgan": "^1.7.32",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.3",
"nodemon": "^1.11.0",
"typescript": "^2.0.8"
}
}