-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1012 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
40
{
"name": "odin-blog-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "node --watch app.js",
"start": "node app.js",
"format": "prettier --write .",
"lint": "eslint . --fix",
"db:seed": "npx prisma db seed",
"db:rebuild": "npx prisma migrate reset --force && npx prisma db seed"
},
"keywords": [],
"author": "Keiko.S",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"prisma": "^7.3.0"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.5.0",
"@prisma/adapter-pg": "^7.1.0",
"@prisma/client": "^7.3.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"ws": "^8.20.0"
}
}