-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 806 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 806 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
{
"name": "test-backend",
"version": "1.0.0",
"description": "Dummy express.js backend",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tonalga69/Test-backend.git"
},
"author": "Tonalga69",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tonalga69/Test-backend/issues"
},
"homepage": "https://github.com/Tonalga69/Test-backend#readme",
"devDependencies": {
"nodemon": "^2.0.22",
"prisma": "^4.13.0"
},
"dependencies": {
"@prisma/client": "^4.13.0",
"body-parser": "^1.20.2",
"body-validator": "^1.3.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"morgan": "^1.10.0"
}
}