-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.58 KB
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
{
"name": "mock-master",
"version": "0.1.3",
"description": "mock server",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"mock": "nodemon -q --inspect ./demo/mockServer/server.js",
"prepare": "husky install",
"demo": "webpack-dev-server --open --config ./demo/webpack.config",
"commit": "git-cz",
"lint": "lint-staged",
"release": "np --yolo",
"test": "jest test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeLittlePrince/mock-master.git"
},
"keywords": [
"mock"
],
"author": "https://github.com/CodeLittlePrince",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeLittlePrince/mock-master/issues"
},
"homepage": "https://github.com/CodeLittlePrince/mock-master#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^25.2.4",
"git-cz": "^4.8.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.3",
"mockjs": "^1.1.0",
"nodemon": "^2.0.14",
"np": "^7.5.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"boom": "^7.3.0",
"chalk": "^4.1.2",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"ws": "^8.2.3"
}
}