-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 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
53
54
55
{
"name": "xiaoyaoji-mock-server",
"version": "1.0.0",
"bin": {
"xiaoyaoji-mock-server": "./bin/index.js"
},
"files": [
"lib",
"bin"
],
"scripts": {
"start": "node ./bin/index",
"build": "rimraf lib && babel src --out-dir lib --plugins=transform-object-rest-spread --compact=true",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"pub": "npm publish --registry=https://registry.npmjs.org"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"ajv": "^6.3.0",
"body-parser": "~1.15.2",
"chalk": "^1.1.3",
"co": "^4.6.0",
"commander": "^2.9.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.1",
"express": "~4.14.0",
"jade": "~1.11.0",
"keymirror": "^0.1.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-error": "^3.1.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"less-middleware": "~2.2.0",
"lodash": "^4.17.2",
"mockjs": "^1.0.1-beta3",
"morgan": "~1.7.0",
"react-dev-utils": "^5.0.1",
"request": "^2.85.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2"
},
"pre-commit": [
"lint"
]
}