-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 909 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
{
"private": true,
"workspaces": [
"example",
"gatsby-theme-auth0-minimal"
],
"scripts": {
"dev": "yarn workspace example dev",
"build": "yarn workspace example build",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint gatsby-theme-auth0-minimal example",
"serve": "yarn workspace example serve",
"clean": "yarn workspace example clean"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-react": "^7.18.3",
"husky": "^3.0.5",
"prettier": "^1.18.2"
},
"author": "Pixel Point",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn format",
"pre-commit": "yarn lint && yarn format"
}
},
"dependencies": {
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-prettier": "^3.1.2"
}
}