-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "mocker-xl",
"version": "1.0.0",
"description": "api mock tool",
"main": "index.js",
"scripts": {
"start": "nodemon --watch 'server/**/*' -e ts,tsx --exec ./node_modules/.bin/ts-node -- ./server/index.ts",
"build": "tsc",
"compose": "docker-compose up -d",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mock"
],
"author": "xiongxiaolong",
"license": "ISC",
"dependencies": {
"@types/mockjs": "^1.0.2",
"@types/mongoose": "^5.5.39",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"mockjs": "^1.1.0",
"mongoose": "^5.8.4",
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.4"
},
"type": "commonjs",
"engines": {
"node": ">=8.10.0",
"npm": ">= 3.0.0"
}
}