mirror of
https://github.com/jiangrui1994/CloudSaver.git
synced 2026-01-09 14:48:47 +08:00
33 lines
937 B
JSON
33 lines
937 B
JSON
{
|
|
"name": "cloud-saver",
|
|
"version": "0.0.8",
|
|
"private": true,
|
|
"workspaces": [
|
|
"frontend",
|
|
"backend"
|
|
],
|
|
"scripts": {
|
|
"ins": "npm-run-all --parallel install:*",
|
|
"install:frontend": "cd frontend && npm install",
|
|
"install:backend": "cd backend && npm install",
|
|
"dev": "npm-run-all --parallel dev:*",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"build": "npm-run-all --parallel build:*",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"build:backend": "cd backend && npm run build",
|
|
"clean": "rimraf **/node_modules **/dist",
|
|
"format": "prettier --write \"**/*.{js,ts,vue,json,md}\"",
|
|
"format:check": "prettier --check \"**/*.{js,ts,vue,json,md}\""
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"rimraf": "^5.0.5",
|
|
"prettier": "^3.2.5"
|
|
},
|
|
"dependencies": {},
|
|
"engines": {
|
|
"pnpm": ">=6.0.0"
|
|
}
|
|
}
|