43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "purchases-personas",
|
|
"version": "1.0.0",
|
|
"description": "Generate realistic fictional personas and their weekly purchase behaviors using AI",
|
|
"scripts": {
|
|
"start": "prisma generate && node dist/index.js",
|
|
"dev": "nodemon src/index.ts",
|
|
"build": "tsc",
|
|
"lint": "eslint . --fix",
|
|
"format": "prettier --config .prettierrc '**/*.{ts,json,md}' --write",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "husky install",
|
|
"audit": "audit-ci",
|
|
"generate": "prisma generate",
|
|
"migrate": "prisma migrate dev"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.32.1",
|
|
"@prisma/client": "^5.22.0",
|
|
"crypto": "^1.0.1",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.4.3",
|
|
"@commitlint/config-conventional": "^18.4.3",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"audit-ci": "^6.6.1",
|
|
"eslint": "^8",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.1.0",
|
|
"nodemon": "^3.0.2",
|
|
"prettier": "^3.1.0",
|
|
"prisma": "^5.8.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|