generated from yandex-praktikum/express-mesto-gha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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": "express-mesto-gha",
"version": "1.0.0",
"description": "Проект Mesto фронтенд + бэкенд",
"main": "app.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/maratdev/express-mesto-gha.git"
},
"author": "marat",
"license": "ISC",
"bugs": {
"url": "https://github.com/maratdev/express-mesto-gha/issues"
},
"homepage": "https://github.com/maratdev/express-mesto-gha#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.1",
"express-winston": "^4.2.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.1",
"validator": "^13.9.0",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.22"
}
}