-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "jamal-backend",
"version": "1.0.0",
"description": "Test",
"main": "server.js",
"scripts": {
"test": "jest",
"seed": "nodemon ./db/Seed.js",
"seed:dev": "nodemon ./db/Seed.js",
"start": "node server.js",
"start:dev": "nodemon server.js",
"seed-and-start": "node ./db/seed.js && node server.js",
"start-seed": "node ./db/Seed.js && node server.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AGuyNamedDJ/Jamal-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AGuyNamedDJ/Jamal-Backend/issues"
},
"homepage": "https://github.com/AGuyNamedDJ/Jamal-Backend#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"morgan": "^1.10.0",
"pg": "^8.11.1"
},
"devDependencies": {
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}