-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.68 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
78
79
80
81
82
83
84
85
{
"name": "silverstripe-gatsby-theme",
"description": "An example theme for SilverStripe using Gatsby",
"version": "1.0.0",
"browserslist": [
">0.25%",
"not dead",
"not ie 11"
],
"dependencies": {
"@storybook/addon-a11y": "^5.0.6",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-knobs": "^5.0.6",
"@storybook/addon-links": "^5.0.6",
"@storybook/addon-storysource": "^5.0.6",
"@storybook/addon-viewport": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"antd": "^3.20.3",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.15",
"deep-map": "^2.0.0",
"dotenv": "^7.0.0",
"es6-weak-map": "^2.0.3",
"gatsby": "^2.3.4",
"gatsby-image": "^2.0.36",
"gatsby-plugin-antd": "^2.0.2",
"gatsby-plugin-canonical-urls": "^2.0.12",
"gatsby-plugin-google-tagmanager": "^2.0.12",
"gatsby-plugin-manifest": "^2.0.26",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.11",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-robots-txt": "^1.4.0",
"gatsby-plugin-sharp": "^2.0.32",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.28",
"gatsby-source-graphql": "^2.0.18",
"gatsby-transformer-sharp": "^2.1.17",
"git": "^0.1.5",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"node-sass-glob-importer": "^5.3.1",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^2.5.8",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"silverstripe-gatsby-helpers": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"babel-loader": "^8.0.5",
"eslint": "^5.15.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^2.1.2",
"gatsby-plugin-eslint": "^2.0.4",
"gatsby-plugin-sass": "^2.0.10",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"component": "./scripts/new-component.sh",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}