zero-ui/package.json

59 lines
1.8 KiB
JSON
Raw Normal View History

2021-03-22 03:25:13 +08:00
{
"name": "zero-ui",
2023-10-05 05:46:46 +08:00
"version": "1.5.8",
2021-08-24 19:13:09 +08:00
"workspaces": [
"backend",
"frontend"
],
2021-03-22 03:25:13 +08:00
"scripts": {
"postinstall": "husky install",
2023-10-05 03:03:15 +08:00
"upgrade:deps": "yarn upgrade-interactive",
"upgrade:yarn": "yarn set version latest",
"clean:deps": "cd frontend && rimraf node_modules && cd ../backend && rimraf node_modules && cd .. && rimraf node_modules",
"format": "yarn prettier",
"format:fix": "yarn prettier --write .",
"lint": "yarn workspaces foreach --all --parallel run lint",
2021-03-22 03:25:13 +08:00
"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\"",
2023-10-05 03:03:15 +08:00
"build": "cd frontend && cross-env GENERATE_SOURCEMAP=false yarn build",
2021-03-22 03:25:13 +08:00
"prod": "cd backend && cross-env NODE_ENV=production ZU_SECURE_HEADERS=false yarn start",
2022-06-18 19:44:59 +08:00
"release": "standard-version && git push --follow-tags origin main && git add CHANGELOG.md",
2021-03-29 06:13:34 +08:00
"commit": "yarn git-cz"
2021-03-22 03:25:13 +08:00
},
"devDependencies": {
2023-10-05 03:03:15 +08:00
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"commitizen": "^4.3.0",
"concurrently": "^8.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",
2023-10-05 03:03:15 +08:00
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
2022-06-12 22:06:18 +08:00
"standard-version": "^9.5.0"
},
"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
},
2023-10-05 03:03:15 +08:00
"packageManager": "yarn@4.0.0-rc.53"
2021-03-22 03:25:13 +08:00
}