-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
47
48
49
50
51
52
53
54
{
"name": "news-explorer-api",
"version": "0.0.1",
"description": "backend-for-diploma-project-yandex.praktikum",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewLapshov/news-explorer-api.git"
},
"keywords": [
"express",
"nodejs",
"mongodb"
],
"author": "Andrew Lapshov",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewLapshov/news-explorer-api/issues"
},
"homepage": "https://github.com/andrewLapshov/news-explorer-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^12.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"express-winston": "^4.0.3",
"helmet": "^3.21.3",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.3",
"mongoose-unique-validator": "^2.0.3",
"mongoose-validator": "^2.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.2"
}
}