-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 987 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
{
"name": "hexlet-lessons",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderAverin/hexlet-lessons.git"
},
"author": "Alexander Averin",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexanderAverin/hexlet-lessons/issues"
},
"homepage": "https://github.com/AlexanderAverin/hexlet-lessons#readme",
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"prettier": "^2.4.1"
},
"dependencies": {
"@hexlet/pairs": "^1.1.1",
"async": "^3.2.3",
"express": "^4.18.1",
"lodash": "^4.17.21"
}
}