forked from gatsbyjs/store.gatsbyjs.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
70
71
72
73
74
75
76
77
{
"name": "gatsby-store",
"description": "Gatsby store for swag and other Gatsby goodies.",
"version": "1.0.0",
"author": "Jason Lengstorf <jason@gatsbyjs.com>",
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.js",
"lint": "echo \"Error: no linter specified\" && exit 0",
"serve": "gatsby serve",
"start": "npm run develop",
"stylelint": "stylelint './src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"@babel/core": "^7.7.4",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"apollo-boost": "^0.4.4",
"auth0-js": "^9.10.2",
"axios": "^0.21.1",
"gatsby": "^2.22.12",
"gatsby-image": "^2.0.41",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-google-gtag": "^4.12.1",
"gatsby-plugin-layout": "^1.0.15",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^3.0.24",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-source-shopify": "^3.2.8",
"gatsby-transformer-sharp": "^2.1.19",
"react": "^16.8.6",
"react-apollo": "^3.1.3",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"react-onclickoutside": "^6.8.0",
"react-router-dom": "^5.0.0",
"react-slick": "^0.29.0",
"recompose": "^0.30.0",
"shopify-buy": "^2.2.4",
"slick-carousel": "^1.8.1",
"workbox-broadcast-update": "^5.1.3"
},
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.17.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.0.0",
"stylelint-processor-styled-components": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
}
}