-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "vue-node-blog",
"version": "1.0.0",
"description": "- vue-cli v4.5.13\r - Node.js v14.15.5\r - MongoDB v4.2.17",
"scripts": {
"serve-all": "run-p web-serve admin-serve server-serve",
"server-serve": "cd server && pnpm serve",
"web-serve": "cd web && pnpm serve",
"admin-serve": "cd admin && pnpm serve",
"install-all": "run-p web-install admin-install server-install",
"server-install": "cd server && pnpm i",
"web-install": "cd web && pnpm i",
"admin-install": "cd admin && pnpm i",
"build-all": "run-p web-build admin-build",
"web-build": "cd web && pnpm build",
"admin-build": "cd admin && pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zonemeen/vue-node-blog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zonemeen/vue-node-blog/issues"
},
"homepage": "https://github.com/zonemeen/vue-node-blog#readme",
"devDependencies": {
"npm-run-all": "4.1.5",
"prettier": "2.5.1"
}
}