zero-ui/package.json

56 lines
1.7 KiB
JSON
Raw Normal View History

2021-03-22 03:25:13 +08:00
{
"name": "zero-ui",
2021-12-16 21:53:25 +08:00
"version": "1.1.5",
2021-08-24 19:13:09 +08:00
"workspaces": [
"backend",
"frontend"
],
2021-03-22 03:25:13 +08:00
"scripts": {
"postinstall": "husky install",
2021-08-24 19:13:09 +08:00
"installDeps": "cd frontend && yarn install && cd ../backend && yarn install",
2021-11-04 20:40:38 +08:00
"upgradeDeps": "yarn upgrade-interactive",
2021-03-22 03:25:13 +08:00
"cleanDeps": "cd frontend && rimraf node_modules && cd ../backend && rimraf node_modules && cd .. && rimraf node_modules",
"dev": "concurrently \"cd frontend && cross-env FAST_REFRESH=true yarn start\" \"cd backend && cross-env NODE_ENV=development ZU_DEFAULT_USERNAME=admin ZU_DEFAULT_PASSWORD=zero-ui nodemon ./bin/www --ignore data/db.json\"",
"build": "cd frontend && cross-env INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false yarn build",
"prod": "cd backend && cross-env NODE_ENV=production ZU_SECURE_HEADERS=false yarn start",
2021-03-29 06:13:34 +08:00
"release": "standard-version && git push --follow-tags origin main",
"commit": "yarn git-cz"
2021-03-22 03:25:13 +08:00
},
"devDependencies": {
2021-08-24 20:59:22 +08:00
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
2021-05-15 19:38:55 +08:00
"commitizen": "^4.2.4",
2021-08-24 20:59:22 +08:00
"concurrently": "^6.2.1",
2021-03-22 03:25:13 +08:00
"cross-env": "^7.0.3",
2021-03-29 06:13:34 +08:00
"cz-conventional-changelog": "^3.3.0",
2021-08-24 20:59:22 +08:00
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
2021-03-22 03:25:13 +08:00
"rimraf": "^3.0.2",
2021-08-24 20:59:22 +08:00
"standard-version": "^9.3.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
2021-03-29 06:13:34 +08:00
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,scss,css,js,json,md}": [
"yarn prettier --write"
]
2021-12-16 21:00:31 +08:00
},
"packageManager": "yarn@3.2.0-rc.8"
2021-03-22 03:25:13 +08:00
}