forked from Lidemy/mentor-program-5th
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 933 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
40
41
42
{
"name": "mentor-program-4th",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint ./homeworks/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lidemy/mentor-program-4th.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lidemy/mentor-program-4th/issues"
},
"homepage": "https://github.com/Lidemy/mentor-program-4th#readme",
"dependencies": {
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5"
}
}