This repository has been archived on 2026-02-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
synthetic-consumer-data/package.json

42 lines
1.2 KiB
JSON

{
"name": "purchases-personas",
"version": "1.1.0",
"description": "Generate realistic fictional personas and their weekly purchase behaviors using AI",
"scripts": {
"start": "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",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"zod": "^3.23.8"
},
"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",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
}
}