-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
44
{
"name": "restaurant-hygiene",
"version": "1.0.0",
"description": "A web app which shows how the restaurants in your area fare in respect to food hygiene.",
"main": "index.js",
"scripts": {
"lint": "eslint \"graphql/**/*.js\" && cd frontend && npm run lint",
"graph": "cd graphql && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yonatanhakatan/restaurant-hygiene.git"
},
"author": "Jonny Levy",
"license": "ISC",
"bugs": {
"url": "https://github.com/yonatanhakatan/restaurant-hygiene/issues"
},
"homepage": "https://github.com/yonatanhakatan/restaurant-hygiene#readme",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.17.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"prettier": "1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint",
"git add"
]
}
}