generated from busycaesar/Repository_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 827 Bytes
/
package.json
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": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"prestart": "chmod +x scripts/prod.sh",
"start": "bash -c scripts/prod.sh",
"predev": "chmod +x scripts/dev.sh",
"dev": "bash -c scripts/dev.sh",
"api-dev": "nodemon src/server.js",
"test": "jest -c jest.config.js --runInBand --detectOpenHandles --",
"predb": "chmod +x scripts/db.sh",
"db": "bash -c scripts/db.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.5"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}