-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.23 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.23 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "gatsby-theme",
"version": "1.0.24",
"description": "A custom framework for Gatsby",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/iamkimchico/gatsby-theme.git"
},
"author": "kimchico",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamkimchico/gatsby-theme/issues"
},
"homepage": "https://github.com/iamkimchico/gatsby-theme#readme",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@prismicio/client": "^5.1.0",
"@types/react-select": "^4.0.17",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"esm": "^3.2.25",
"gatsby": "3.13.0",
"gatsby-plugin-breakpoints": "^1.3.3",
"gatsby-plugin-image": "^1.13.0",
"gatsby-plugin-manifest": "^3.6.0",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sass": "^4.6.0",
"gatsby-plugin-sharp": "^3.13.0",
"gatsby-plugin-styled-components": "^4.9.0",
"gatsby-plugin-ts-config": "^2.1.0",
"gatsby-plugin-typescript": "3.13.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^3.13.0",
"gatsby-source-prismic": "^4.1.2",
"gatsby-transformer-sharp": "^3.13.0",
"prismic-reactjs": "^1.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-imgix": "^9.3.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@types/gatsby-plugin-breakpoints": "^1.3.2",
"@types/node": "^16.3.3",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.11",
"@types/typography": "^0.16.4",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "4.4.2"
},
"peerDependencies": {
"gatsby": "^3.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"update": "git add . && git commit -m 'update package' && git push && npm version patch && npm publish",
"lint": "tsc --noEmit && eslint \"*/**/*.{ts,tsx}\" --quiet --fix && stylelint \"./src/**/*.{tsx,ts}\"",
"format": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint",
"stylelint",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}