-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
47
48
49
50
51
52
53
54
{
"name": "express-ts",
"version": "0.1.0",
"description": "Restful Express JS for Typescript",
"scripts": {
"start": "gulp server",
"start:p": "gulp server-p",
"build": "tsc",
"watch": "tsc -w",
"build:p": "gulp build-p",
"test": "gulp test",
"cover": "gulp cover",
"lint": "gulp lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.15.0",
"jsonwebtoken": "^7.2.1",
"mongoose": "^4.6.5",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.1.0"
},
"devDependencies": {
"awesome-typescript-loader": "^3.0.0-beta.18",
"browser-sync": "^2.18.7",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-clean-css": "^2.3.2",
"gulp-empty": "^0.1.1",
"gulp-htmlmin": "^3.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-nodemon": "^2.2.1",
"gulp-replace": "^0.5.4",
"gulp-run": "^1.7.1",
"gulp-tslint": "^6.1.2",
"gulp-uglify": "^2.0.1",
"jasmine-core": "^2.5.2",
"mocha": "^3.1.2",
"mocha-typescript": "^1.0.18",
"remap-istanbul": "^0.7.0",
"source-map-support": "^0.4.11",
"tslint": "^3.15.1",
"typescript": "^2.0.6",
"webpack": "^2.2.0"
}
}