45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "replace_me",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "NODE_ENV=production bun run index.ts",
|
|
"dev": "NODE_ENV=dev bun run index.ts --watch",
|
|
"lint": "oxlint --fix .",
|
|
"prepare": "husky",
|
|
"prettier": "prettier --write .",
|
|
"init:prisma": "bunx prisma migrate dev --name init"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"oxlint --fix",
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.5.0",
|
|
"@commitlint/config-conventional": "^19.5.0",
|
|
"@types/lodash": "^4.14.202",
|
|
"@types/node-schedule": "^2.1.6",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"bun-types": "latest",
|
|
"eslint": "^9.2.0",
|
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
"husky": "^9.1.6",
|
|
"lint-staged": "^15.2.10",
|
|
"oxlint": "^0.11.1",
|
|
"prettier": "^3.3.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^5.22.0",
|
|
"lodash": "^4.17.21",
|
|
"node-schedule": "^2.1.1",
|
|
"pocketbase": "^0.21.1"
|
|
}
|
|
}
|