forked from gatsbyjs/store.gatsbyjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.98 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
{
"name": "gatsby-store",
"description": "Gatsby store for swag and other Gatsby goodies.",
"version": "1.0.0",
"author": "Jason Lengstorf <[email protected]>",
"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": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"apollo-boost": "^0.3.1",
"auth0-js": "^9.10.2",
"axios": "^0.18.0",
"gatsby": "^3.1.2",
"gatsby-image": "^2.0.41",
"gatsby-plugin-emotion": "^4.0.6",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-image": "^1.2.0-next.0",
"gatsby-plugin-layout": "^1.0.15",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-source-shopify": "^5.0.1",
"gatsby-transformer-sharp": "^2.1.19",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"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",
"recompose": "^0.30.0",
"shopify-buy": "^2.2.4"
},
"devDependencies": {
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.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"
]
}
}