-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 904 Bytes
/
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
{
"name": "@megalo/devtool",
"version": "0.1.2",
"description": "",
"main": "run.js",
"files": [
"vue-plugin/**/*",
"webpack-plugin/**/*",
"shared/**/*",
"server/**/*",
"README.md",
"run.js"
],
"scripts": {
"start": "npm run start:server & npm run start:client",
"debug": "node --inspect-brk ./run.js",
"start:server": "node ./run.js",
"start:client": "npm run serve --prefix=./client",
"prepublishOnly": "npm run build --prefix=./client"
},
"author": "",
"license": "ISC",
"dependencies": {
"ip": "^1.1.5",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"socket.io": "^2.2.0",
"weapp.socket.io": "^2.0.1"
},
"peerDependencies": {
"webpack": "^4"
},
"publishConfig": {
"access": "public"
}
}