-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"private": true,
"version": "0.0.0-unversioned",
"name": "@reactcostarica/website",
"description": "React Costa Rica website",
"author": "Kevin Wolf <hi@kevinwolf.me>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --ignore-path .gitignore",
"build": "gatsby build",
"validate": "yarn tsc && yarn lint && yarn build",
"setup": "yarn install && yarn validate",
"start": "gatsby develop",
"serve": "gatsby serve"
},
"dependencies": {
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "^4.3.3",
"framer-motion": "^1.6.3",
"gatsby": "2.13.70",
"gatsby-image": "^2.2.9",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@kevinwolf/eslint-config": "^0.2.3",
"@types/react-helmet": "5.0.10",
"@types/styled-system": "^5.1.0",
"doctoc": "^1.4.0",
"dotenv": "^8.1.0",
"eslint": "6.2.1",
"gatsby-plugin-layout": "^1.1.4",
"gatsby-plugin-manifest": "^2.2.5",
"gatsby-plugin-material-ui": "^2.1.5",
"gatsby-plugin-offline": "^2.2.6",
"gatsby-plugin-react-helmet": "^3.1.3",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.2.12",
"gatsby-plugin-typescript": "^2.1.3",
"gatsby-source-filesystem": "^2.1.9",
"gatsby-transformer-sharp": "^2.2.6",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"readme.md": [
"doctoc",
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}