-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 764 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 764 Bytes
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
{
"name": "mock-server",
"version": "1.0.0",
"description": "mock server for euler",
"main": "main.js",
"scripts": {
"start": "node main.js ",
"dev": "nodemon main.js "
},
"keywords": [
"mock",
"server",
"koa2"
],
"author": "schild <zzzeternalchildren@outlook.com>",
"license": "ISC",
"dependencies": {
"apisauce": "^0.15.2",
"babel-runtime": "^6.26.0",
"koa": "^2.5.2",
"koa-body": "^4.0.4",
"koa-router": "^7.4.0",
"mockjs": "^1.0.1-beta3"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"standard": "^11.0.1"
},
"standard": {
"parser": "babel-eslint"
}
}