-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "data-mock",
"version": "2.2.1",
"description": "轻量级数据模拟\b服务",
"main": "lib",
"bin": {
"dm": "bin/dm"
},
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" ",
"dev": "bin/dm server -t ./example/db -w ./example/api",
"dev:create": "bin/dm doc -t ./example/api",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhouzuchuan/data-mock.git"
},
"keywords": [
"mock",
"data",
"apidoc"
],
"author": "fezzc",
"bugs": {
"url": "https://github.com/zhouzuchuan/data-mock/issues"
},
"apidoc": {
"name": "DM API",
"description": "Data Mock Api Docs",
"title": "DM"
},
"homepage": "https://github.com/zhouzuchuan/data-mock#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.6",
"@types/cross-spawn": "^6.0.0",
"@types/express": "^4.17.0",
"@types/glob": "^7.1.1",
"@types/http-proxy-middleware": "^0.19.2",
"@types/inquirer": "^6.0.3",
"@types/lodash.set": "^4.3.6",
"@types/mockjs": "^1.0.2",
"@types/node": "^12.6.2",
"@types/open": "^6.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"lint-staged": "^9.2.0",
"typescript": "^3.3.3"
},
"dependencies": {
"address": "1.0.3",
"apidoc": "^0.17.7",
"assert": "^2.0.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"commander": "^2.20.0",
"cors": "^2.8.5",
"cross-spawn": "^6.0.5",
"detect-port-alt": "^1.1.6",
"express": "^4.17.1",
"glob": "^7.1.4",
"http-proxy-middleware": "^0.19.1",
"inquirer": "^6.5.0",
"lodash.set": "^4.3.2",
"mockjs": "^1.0.1-beta3",
"open": "^6.4.0",
"update-notifier": "^3.0.1"
}
}