-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "dev-mock-cli",
"version": "0.0.7",
"description": "a react-cli and create react app",
"main": "index.js",
"files": [
"bin",
"command",
"public",
"utils",
"index.js",
"package.json",
"server.js",
"README.md"
],
"type": "module",
"bin": {
"dev-mock-cli": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx nodemon --watch ./mock --exec 'node ./bin/index.js mock'",
"prettier": "prettier -w .",
"publish:patch": "npm version patch && npm publish --registry=https://registry.npmjs.org"
},
"author": "rich66",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"chalk": "4.1.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"get-port": "^7.1.0",
"http-proxy-middleware": "^2.0.6",
"lodash": "^4.17.21",
"mockjs": "^1.1.0",
"open": "^8.4.0",
"ora": "^4.0.5",
"swagger-parser": "^10.0.3",
"yargs": "^17.4.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.11.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.19",
"openapi-types": "^12.1.3",
"prettier": "^3.3.3"
},
"resolutions": {
"mockjs/commander": "9.5.0"
}
}