forked from Timm-D/Dinder-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 912 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 912 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
{
"name": "backend",
"version": "1.0.0",
"description": "Node app that connects to MongoDB",
"main": "listen.js",
"scripts": {
"test": "jest",
"seed": "node ./database/run-seed.js",
"seed-prod": "NODE_ENV=production npm run seed",
"start": "node listen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Timm-D/Dinder-Backend.git"
},
"keywords": [],
"author": "Tim",
"license": "MIT",
"bugs": {
"url": "https://github.com/Timm-D/Dinder-Backend/issues"
},
"homepage": "https://github.com/Timm-D/Dinder-Backend#readme",
"dependencies": {
"cors": "^2.8.5",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jest": "^29.3.1",
"mongoose": "^6.7.2",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"postcodesio-client": "^0.3.4",
"supertest": "^6.3.1"
}
}