-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
44
45
46
{
"name": "typescript-express-seed",
"version": "1.0.0",
"description": "This project is a Seed to ExpressJS/NodeJS in Typescript",
"author": "Carcamano and Bigous",
"license": "MIT",
"scripts": {
"tsc": "gulp tsc",
"watch": "gulp watch",
"lint": "gulp tslint",
"serve": "gulp serve",
"start": "gulp serve",
"debug": "gulp serve:debug",
"postinstall": "typings install"
},
"dependencies": {
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"cors": "^2.7.1",
"express": "^4.13.3",
"express-jwt": "^3.3.0",
"jsonwebtoken": "^5.7.0",
"moment": "^2.10.6",
"moment-timezone": "^0.4.1",
"mysql": "^2.10.2",
"source-map-support": "^0.4.0"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"d-ts-gen": "^0.2.0",
"gulp": "^3.9.1",
"gulp-develop-server": "^0.5.0",
"gulp-install": "^0.6.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^4.3.0",
"gulp-tslint-stylish": "^1.1.1",
"gulp-typescript": "^2.10.0",
"merge2": "^0.3.6",
"node-es6": "^0.3.1",
"tslint": "^3.5.0",
"typescript": "^1.7.5",
"typings": "^0.6.8"
}
}