-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.85 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
{
"name": "2018.mirrorconf.com",
"description": "Landing page for MirrorConf 2018",
"version": "1.0.0",
"author": "Subvisual <contact@subvisual.co>",
"dependencies": {
"@jacobmischka/gatsby-plugin-react-svg": "^1.1.0",
"classnames": "^2.2.5",
"detect-node": "^2.0.3",
"fse": "^4.0.1",
"gatsby": "^1.9.273",
"gatsby-link": "^1.6.34",
"gatsby-plugin-catch-links": "^1.0.24",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-postcss-sass": "^1.0.19",
"gatsby-plugin-react-css-modules": "^1.0.11",
"gatsby-plugin-react-helmet": "^2.0.3",
"gatsby-plugin-react-svg": "^1.1.1",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-remark": "^1.7.44",
"html-react-parser": "^0.4.6",
"lodash": "^4.17.5",
"netlify-cms": "^1.9.2",
"noisejs": "^2.1.0",
"pixi.js": "^4.8.1",
"popmotion": "^8.1.14",
"react-helmet": "^5.2.0",
"react-pose": "^3.3.4",
"style-value-types": "^1.0.4",
"webpack": "^1.15.0"
},
"optionalDependencies": {
"fsevents": "^1.2.4"
},
"keywords": [
"mirrorconf"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"deploy-github": "gatsby build --prefix-paths && gh-pages -d public",
"deploy-production": "gatsby build && s3-deploy './public/**' --cwd './public/' --bucket $PRODUCTION_BUCKET_NAME --deleteRemoved --signatureVersion v4 --invalidate '/*' --distId $PRODUCTION_DIST_ID",
"deploy-staging": "gatsby build && s3-deploy './public/**' --cwd './public/' --bucket $STAGING_BUCKET_NAME --deleteRemoved --signatureVersion v4 --invalidate '/*' --distId $STAGING_DIST_ID",
"develop": "concurrently -k -n \"GATSBY,STORYBOOK\" \"gatsby develop -H 0.0.0.0\" \"start-storybook -p 9001 -c .storybook\"",
"format": "eslint --fix src/**/*.js* && stylelint --fix src/**/*.css",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "yarn run test-js && yarn run test-css",
"test-css": "stylelint src/**/*.css",
"test-js": "eslint src/**/*.js*"
},
"devDependencies": {
"@storybook/addon-info": "^3.3.13",
"@storybook/addon-options": "^3.3.13",
"@storybook/react": "^3.3.13",
"babel-eslint": "^8.2.3",
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"gh-pages": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.7.1",
"postcss-custom-properties": "^7.0.0",
"prettier": "^1.10.2",
"react-router-dom": "^4.2.2",
"s3-deploy": "^1.1.0",
"storybook-addon-a11y": "^3.1.9",
"stylelint": "^9.2.1",
"stylelint-config-prettier": "^3.2.0",
"stylelint-order": "^0.8.1"
}
}