-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 KB
/
package.json
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
{
"name": "zenspire-be",
"version": "1.0.0",
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seeders/seed.ts"
},
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon run",
"start": "node dist/src/app/app.js",
"build": "tsc"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.11.1",
"@prisma/client": "^5.11.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"openai": "^4.46.1",
"uuid": "^9.0.1",
"winston": "^3.12.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"babel-jest": "^29.7.0",
"nodemon": "^3.1.0",
"prisma": "^5.11.0",
"supertest": "^6.3.4",
"typescript": "^5.4.2"
}
}