-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
44
45
46
{
"name": "news-explorer-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "MONGO_URL=mongodb://localhost:27017/news-explorer-test jest",
"dev": "nodemon app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rileydanejohnston/news-explorer-backend.git"
},
"author": "Riley Johnston",
"license": "ISC",
"bugs": {
"url": "https://github.com/rileydanejohnston/news-explorer-backend/issues"
},
"homepage": "https://github.com/rileydanejohnston/news-explorer-backend#readme",
"devDependencies": {
"eslint": "^8.6.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"dotenv": "^11.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"express": "^4.17.2",
"express-rate-limit": "^6.1.0",
"express-winston": "^4.2.0",
"helmet": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.6",
"validator": "^13.7.0",
"winston": "^3.4.0"
},
"engines": {
"node": "14.x"
}
}