forked from Akash-1808/elixir-backend
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 962 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 962 Bytes
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
{
"name": "elixirevent",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@neondatabase/serverless": "^1.0.0",
"bcrypt": "^5.1.1",
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.42.0",
"express": "^5.1.0",
"json-web-token": "^3.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.15.6",
"uuid4": "^2.0.3",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/pg": "^8.11.13",
"drizzle-kit": "^0.31.0",
"nodemon": "^3.1.10"
}
}