-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.49 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
{
"name": "gatsby-universal",
"license": "MIT",
"author": "Kosti Marko",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && npm run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose"
},
"greenkeeper": {
"ignore": [
"ava",
"core-js"
]
},
"dependencies": {
"@reach/dialog": "^0.2.9",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.1.4",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.10.6",
"formik": "^1.5.8",
"framer-motion": "^1.6.3",
"gatsby": "^2.13.82",
"gatsby-image": "^2.2.14",
"gatsby-plugin-google-analytics": "^2.1.11",
"gatsby-plugin-google-tagmanager": "^2.1.7",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.5",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sharp": "^2.2.18",
"gatsby-plugin-sitemap": "^2.2.9",
"gatsby-plugin-styled-components": "^3.1.3",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-remark-copy-linked-files": "^2.1.11",
"gatsby-remark-images": "^3.1.18",
"gatsby-remark-prismjs": "^3.3.9",
"gatsby-source-filesystem": "^2.1.18",
"gatsby-source-medium": "^2.1.4",
"gatsby-transformer-json": "^2.2.5",
"gatsby-transformer-remark": "^2.6.19",
"gatsby-transformer-sharp": "^2.2.12",
"intersection-observer": "^0.7.0",
"lottie-web": "^5.5.7",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"react-lottie": "^1.2.3",
"react-pose": "^4.0.8",
"styled-components": "^4.3.2",
"yup": "^0.27.0"
},
"devDependencies": {
"ava": "^2.3.0",
"babel-eslint": "^10.0.2",
"chrome-launcher": "^0.11.2",
"core-js": "^3.2.1",
"directory-named-webpack-plugin": "^4.0.1",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"favicons": "^5.4.1",
"gatsby-plugin-eslint": "^2.0.5",
"lighthouse": "^5.2.0",
"mkdirp": "^0.5.1",
"node-gyp": "^5.0.3",
"prettier": "^1.18.2"
}
}