49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "egg_server",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "NODE_ENV=production bun run index.ts",
|
|
"dev": "NODE_ENV=dev bun run index.ts --watch",
|
|
"lint": "eslint --fix .",
|
|
"prepare": "husky",
|
|
"prettier": "prettier --write ."
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.4.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@eslint/js": "^9.9.0",
|
|
"@types/node-schedule": "^2.1.7",
|
|
"@types/uuid": "^10.0.0",
|
|
"bun-types": "^1.1.25",
|
|
"eslint": "^9.9.0",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"husky": "^9.1.5",
|
|
"lint-staged": "^15.2.9",
|
|
"prettier": "^3.3.3",
|
|
"typescript-eslint": "^8.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"dependencies": {
|
|
"@egg/hooks": "^1.2.0",
|
|
"@egg/lark-msg-tool": "^1.2.0",
|
|
"@egg/logger": "^1.3.0",
|
|
"@egg/net-tool": "^1.6.0",
|
|
"@egg/path-tool": "^1.3.0",
|
|
"node-schedule": "^2.1.1",
|
|
"p-limit": "^6.1.0",
|
|
"pocketbase": "^0.21.4",
|
|
"uuid": "^10.0.0",
|
|
"winston": "^3.14.2",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
}
|
|
} |