mirror of
https://github.com/jiangrui1994/CloudSaver.git
synced 2026-01-11 23:58:46 +08:00
Initial commit for open-source version
This commit is contained in:
32
package.json
Normal file
32
package.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user