-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.78 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.78 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "questionsys",
"version": "1.0.0",
"description": "question system",
"main": "index.js",
"author": "ZZR-china <2467254599@qq.com>",
"license": "MIT",
"repository": {
"url": "git@github.com:ZZR-china/questionsys.git",
"type": "git"
},
"scripts": {
"start": "gulp serve",
"dev": "gulp serve",
"build": "gulp"
},
"keywords": [
"node",
"express"
],
"engines": {
"node": ">=6.x"
},
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.4.7",
"body-parser": "^1.16.1",
"co": "^4.6.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"debug": "^2.6.1",
"express": "^4.14.1",
"express-jwt": "^5.1.0",
"express-validation": "^1.0.1",
"express-winston": "^2.2.0",
"helmet": "^3.4.0",
"http-status": "^1.0.1",
"joi": "^10.2.2",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.4",
"method-override": "^2.3.7",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"mongoose": "^4.8.2",
"morgan": "^1.8.1",
"qr-image": "^3.2.0",
"serve-favicon": "^2.3.2",
"svg-captcha": "^1.3.1",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"cross-env": "^3.1.4",
"eslint": "^3.15.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.3.0",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.4.1",
"gulp-until": "^0.1.3",
"run-sequence": "^1.2.2"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}