-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "newsletter-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"build": "tsc",
"generate": "bunx prisma generate",
"dev": "tsx watch ./src/server.ts",
"start": "node ./dist/server.js",
"prettier:format": "bun prettier --write 'src/**/*.{js,jsx,ts,tsx,vue}'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.11.4",
"@prisma/client": "^5.17.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/swagger-ui-express": "^4.1.6",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.17.0",
"swagger-ui-express": "^5.0.1",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/xml2js": "^0.4.14",
"prettier": "3.3.3",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"prisma": {
"schema": "src/database/prisma/schema.prisma"
}
}