-
Notifications
You must be signed in to change notification settings - Fork 204
/
package.json
36 lines (36 loc) · 844 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
{
"name": "easynode",
"description": "web ssh",
"private": true,
"workspaces": [
"server",
"web",
"client"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chaos-zhu/easynode.git"
},
"keywords": [
"vps",
"node",
"easynode",
"chaos",
"chaoszhu"
],
"author": "chaoszhu",
"license": "ISC",
"scripts": {
"dev": "concurrently \"yarn workspace web run dev\" \"yarn workspace server run local\"",
"clean": "rimraf web/node_modules server/node_modules client/node_modules node_modules",
"encrypt": "node ./local-script/encrypt-file.js"
},
"bugs": {
"url": "https://github.com/chaos-zhu/easynode/issues"
},
"homepage": "https://github.com/chaos-zhu/easynode#readme",
"devDependencies": {
"concurrently": "^8.2.2",
"rimraf": "^6.0.1"
}
}