-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.33 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": "alexgaudiosi.com",
"license": "MIT",
"author": "Alex Gaudiosi",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "yarn run build:favicons && yarn run build && yarn run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons",
"postinstall": "yarn run build:dir && yarn run build:favicons",
"build": "yarn run build:favicons && yarn run build:dir && gatsby build",
"test": "ava **/*.test.js --verbose"
},
"greenkeeper": {
"ignore": [
"ava",
"core-js"
]
},
"dependencies": {
"@reach/dialog": "^0.18.0",
"@reach/router": "^1.3.4",
"@reach/visually-hidden": "^0.18.0",
"babel-plugin-styled-components": "^2.1.4",
"gatsby": "^4.0.0",
"gatsby-plugin-image": "^2.25.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sharp": "^4.1.0",
"gatsby-plugin-sitemap": "^5.1.0",
"gatsby-plugin-styled-components": "^5.25.0",
"gatsby-plugin-webpack-size": "^2.0.1",
"gatsby-source-filesystem": "^4.1.0",
"gatsby-transformer-json": "^4.1.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.1.0",
"intersection-observer": "^0.12.2",
"prop-types": "^15.6.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-helmet": "^6.1.0",
"react-pose": "^4.0.10",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"ava": "^0.25.0",
"chrome-launcher": "^1.1.0",
"core-js": "^3.33.2",
"directory-named-webpack-plugin": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-webpack-plugin": "^4.0.1",
"favicons": "^6.2.2",
"gatsby-plugin-eslint": "^4.0.4",
"gatsby-plugin-netlify": "^5.1.1",
"lighthouse": "^4.0.0",
"mkdirp": "^0.5.1",
"node-gyp": "^3.8.0",
"prettier": "^1.16.0"
}
}