-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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": "movies-explorer-api",
"version": "1.0.0",
"description": "Сервис, в котором можно найти фильмы по запросу и сохранить в личном кабинете.",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/G28XYZ/movies-explorer-api.git"
},
"author": "Alexandr Kucherenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/G28XYZ/movies-explorer-api/issues"
},
"homepage": "https://github.com/G28XYZ/movies-explorer-api#readme",
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.15"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"celebrate": "^15.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.4.0",
"express-winston": "^4.2.0",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.10",
"validator": "^13.7.0",
"winston": "^3.7.2"
}
}