-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"prisma:generate": "DATABASE_URL=postgresql://user:pass@localhost:5432/db prisma generate",
"pretest": "npm run prisma:generate",
"test": "jest",
"test:coverage": "jest --coverage"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neurowealth/Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Neurowealth/Backend/issues"
},
"homepage": "https://github.com/Neurowealth/Backend#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@prisma/client": "^5.22.0",
"@stellar/stellar-sdk": "^14.5.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"node-cron": "^4.2.1",
"twilio": "^4.11.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"@types/twilio": "^3.19.3",
"@types/supertest": "^7.2.0",
"jest": "^30.2.0",
"nodemon": "^3.1.14",
"prisma": "^5.22.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}