-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1020 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
{
"name": "type-node",
"version": "0.0.1",
"description": "NodeJS REST API written in TypeScript",
"scripts": {
"dev": "SET NODE_ENV=development && nodemon ./bin/www",
"test": "test",
"start": "node ./bin/www",
"start.watch": "nodemon ./bin/www",
"start.watch.v": "nodemon ./bin/www --verbose"
},
"author": "strider2342",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"dateformat": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.15.4",
"method-override": "^2.3.9",
"morgan": "^1.8.2",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.4",
"@types/cookie-parser": "^1.4.0",
"@types/morgan": "^1.7.32",
"@types/winston": "^2.3.4",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.1",
"gulp-util": "^3.0.8",
"nodemon": "^1.11.0",
"typescript": "^2.4.2"
}
}