forked from zkeyword/apiMockServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "mockServer",
"version": "0.1.0",
"private": true,
"scripts": {
"init": "node ./script",
"start": "node bin/www",
"dev": "./node_modules/.bin/nodemon bin/www",
"prd": "pm2 start bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --ext .js src",
"precommit": "npm run lint"
},
"dependencies": {
"comment-json": "^1.1.3",
"debug": "^2.6.3",
"drafter": "^1.2.0",
"ejs": "~2.3.3",
"jquery": "^3.2.1",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^2.0.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"koa-stylus": "^0.1.0",
"koa-views": "^5.2.1",
"marked": "^0.3.6",
"mockjs": "^1.0.1-beta3",
"mysql": "^2.15.0",
"mysql2": "^1.4.2",
"nano-json": "^1.2.4",
"normalize-newline": "^3.0.0",
"qs": "^6.5.1",
"require-directory": "^2.1.1",
"sequelize": "^4.15.0",
"stylus": "^0.54.5"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.8.1"
}
}