-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"scripts": {
"start": "gatsby develop --host 0.0.0.0",
"build": "gatsby build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^3.10.0",
"gatsby": "2.24.4",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-source-filesystem": "^2.3.27",
"gatsby-source-github-api": "^0.2.1",
"gatsby-transformer-yaml": "^2.4.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@mrseanbaines/prettier-config": "^1.1.0",
"@svgr/webpack": "^5.4.0",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.3",
"@types/styled-system": "^5.1.10",
"@types/webpack": "^4.41.22",
"babel-plugin-styled-components": "^1.11.1",
"clean-terminal-webpack-plugin": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-app": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,md,yml,yaml,json}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"eslint --fix --max-warnings=0"
],
"*.{ts,tsx}": [
"bash -c tsc -p ./tsconfig.json"
]
},
"prettier": "@mrseanbaines/prettier-config",
"private": true,
"resolutions": {
"babel-plugin-remove-graphql-queries": "2.9.4"
}
}