-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 941 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 941 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
{
"name": "eraser-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --passWithNoTests",
"dev": "nodemon src/index.js",
"prisma:migrate-dev": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhinav29102005/eraser-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhinav29102005/eraser-backend/issues"
},
"homepage": "https://github.com/abhinav29102005/eraser-backend#readme",
"dependencies": {
"@prisma/client": "^6.11.1",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"jest": "^30.0.4",
"nodemon": "^3.1.10",
"prisma": "^6.11.1",
"supertest": "^7.1.3"
}
}