-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.75 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
{
"name": "wx-serve",
"version": "0.8.26",
"description": "微信工具",
"main": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Kingbultsea/wechat-server-tool.git"
},
"files": [
"bin",
"dist",
"project"
],
"bin": {
"wx-serve": "bin/run.js"
},
"scripts": {
"semantic-release": "semantic-release",
"run": "node ./bin/run.js --port 8089",
"dev": "run-p dev-node",
"dev-client": "tsc -w --p src/client",
"dev-node": "tsc -w --p src/node",
"dev-bin": "tsc -w --p src/api",
"build": "tsc -p src/client && tsc -p src/node",
"test": "jest",
"lint": "prettier --write --parser typescript \"src/**/*.ts\""
},
"gitHooks": {},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"author": "Kingbultsea",
"license": "ISC",
"dependencies": {
"@types/koa": "^2.13.3",
"chokidar": "^3.5.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lru-cache": "^6.0.0",
"madge": "^5.0.1",
"minimist": "^1.2.5",
"superagent": "^7.0.2",
"typescript": "^4.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.23",
"@types/koa-bodyparser": "^4.3.1",
"@types/koa-router": "^7.4.2",
"@types/superagent": "^4.1.11",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"execa": "^5.1.1",
"jest": "^27.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"vercel": "^23.0.0",
"yorkie": "^2.0.0"
}
}