2024-11-15 01:37:02 +08:00

46 lines
1.5 KiB
JSON

{
"name": "apps-backend-store",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"watch": "rollup -c rollup.config.mjs -w",
"dev": "cross-env NODE_ENV=development nodemon --delay 2.5 -e js,cjs,mjs --exec node dist/app.mjs",
"test": "tsx test/**/*.ts",
"dev:watch": "concurrently -n \"Watch,Dev\" -c \"green,blue\" \"npm run watch\" \"sleep 1 && npm run dev\" ",
"build": "rimraf dist && rollup -c rollup.config.mjs",
"deploy": "envision switchOrg docs && envision publish . -k system-book",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "abearxiong <xiongxiao@xiongxiao.me>",
"license": "MIT",
"type": "module",
"dependencies": {
"@abearxiong/auth": "1.0.2",
"@abearxiong/use-config": "^0.0.2",
"@kevisual/router": "0.0.4-alpha-8",
"nanoid": "^5.0.8",
"pg": "^8.13.1",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"glob": "^11.0.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.26.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-inject": "^3.0.2",
"tslib": "^2.8.1"
}
}