-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "votte-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"db:ci": "npm run db:migrate",
"db:dirty-migrations": "test -z \"$(git status --porcelain -- ./src/db/migrations)\" || echo 'Dirty migrations found! Run `npm run db:generate` and ensure migrations are committed.'",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:generate:custom": "drizzle-kit generate --custom",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/pg": "^8.11.10",
"drizzle-kit": "^0.28.1",
"nodemon": "^3.1.7",
"tsx": "^4.19.2"
},
"dependencies": {
"@google-analytics/data": "^5.2.1",
"axios": "^1.7.7",
"cloudinary": "^2.6.1",
"cors": "^2.8.5",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.4",
"express": "^4.21.0",
"express-session": "^1.18.0",
"jsdom": "^26.0.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.0",
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.13",
"nodemailer": "^7.0.11",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"pg": "^8.13.1",
"xml2js": "^0.6.2"
}
}