generated from epilande/gatsby-starter-theme-ts
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
43 lines (43 loc) · 1.15 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
{
"private": true,
"workspaces": [
"demo",
"gatsby-theme-firebase"
],
"scripts": {
"dev": "yarn workspace demo dev",
"build": "yarn workspace demo build",
"format": "pretty-quick",
"lint": "eslint --ext .tsx,.ts gatsby-theme-firebase demo"
},
"devDependencies": {
"@types/node": "^13.1.1",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.4",
"@types/theme-ui": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.9.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.4"
},
"author": "Emmanuel Pilande",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn lint && tsc --noEmit"
}
}
}