-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "express-mesto",
"version": "1.0.0",
"description": "Сервер для проекта Место",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"dev": "nodemon app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergeyKirintsev/express-mesto.git"
},
"keywords": [],
"author": "Sergey Kirintsev",
"license": "ISC",
"bugs": {
"url": "https://github.com/SergeyKirintsev/express-mesto/issues"
},
"homepage": "https://github.com/SergeyKirintsev/express-mesto#readme",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.3",
"validator": "^13.6.0"
}
}