-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3.05 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
86
87
88
89
90
91
{
"name": "mattlane.us",
"description": "Matt Lane personal Gatsby site",
"repository": {
"type": "git",
"url": "git://github.com/mmmaaatttttt/personal-site.git"
},
"license": "MIT",
"scripts": {
"build": "GATSBY_BASE_URL='https://mattlane.us' gatsby build",
"deploy": "GATSBY_BASE_URL='https://mattlane.us' gatsby build && s3-deploy './public/**' --cwd './public/' --region us-east-1 --bucket mattlane.us --deleteRemoved && aws-cloudfront-invalidate $npm_config_distribution_id",
"develop": "npm run indices && GATSBY_BASE_URL='http://localhost:8000' gatsby develop -H localhost",
"indices": "create-index -i ./src/story_components/{atoms,molecules,organisms,templates,} ./src/providers ./src/hooks ./src/contexts",
"serve": "gatsby serve",
"test": "jest",
"test:watch": "jest --watch",
"test:clear": "npx jest --clearCache"
},
"dependencies": {
"@mdx-js/mdx": "^0.20.3",
"@mdx-js/tag": "^0.18.0",
"ajv": "^6.10.0",
"animate.css": "^3.7.0",
"aws-cloudfront-invalidate": "^0.1.3",
"d3": "^5.9.1",
"d3-force-bounce": "^0.5.6",
"d3-force-surface": "^0.5.6",
"d3-transition": "^1.2.0",
"enzyme-adapter-react-16": "^1.10.0",
"gatsby": "^2.1.27",
"gatsby-image": "^2.0.31",
"gatsby-link": "^2.0.14",
"gatsby-mdx": "^0.4.2",
"gatsby-plugin-feed": "^2.0.14",
"gatsby-plugin-google-analytics": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.8",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.25",
"gatsby-plugin-sitemap": "^2.0.6",
"gatsby-plugin-styled-components": "^3.0.6",
"gatsby-plugin-typography": "^2.2.8",
"gatsby-remark-images": "^3.0.6",
"gatsby-source-filesystem": "^2.0.23",
"gatsby-transformer-csv": "^2.0.7",
"gatsby-transformer-sharp": "^2.1.15",
"graphql": "^14.1.1",
"jstat": "^1.7.1",
"katex": "^0.10.1",
"lodash": "^4.17.11",
"odex": "^2.0.4",
"polished": "^2.3.3",
"prop-types": "^15.7.2",
"rc-slider": "^8.6.6",
"react": "^16.8.4",
"react-animate-on-scroll": "^2.1.5",
"react-dom": "^16.8.4",
"react-draggable": "^3.3.0",
"react-helmet": "^5.2.0",
"react-mailchimp-subscribe": "^2.1.0",
"react-measure": "^2.3.0",
"react-move": "^2.9.1",
"react-redux": "^6.0.1",
"react-select": "^2.4.1",
"react-twitter-widgets": "^1.7.1",
"react-typography": "^0.16.19",
"redux": "^4.0.1",
"styled-components": "^4.1.3",
"topojson": "^3.0.2",
"typography": "^0.16.19",
"typography-theme-alton": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@fortawesome/fontawesome-free": "^5.7.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-gatsby": "^0.1.8",
"create-index": "^2.4.0",
"enzyme": "^3.9.0",
"enzyme-to-json": "^3.3.5",
"esm": "^3.2.14",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"react-test-renderer": "^16.8.4",
"s3-deploy": "^1.3.0"
},
"resolutions": {
"graphql": "14.1.1"
}
}