-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.04 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
{
"name": "dogpower.cz",
"license": "MIT",
"author": "Adam Blazek",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write **/*.{js,jsx}",
"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": {
"@fontsource/rubik": "^4.0.1",
"@reach/router": "^1.2.1",
"babel-plugin-styled-components": "^1.11.1",
"babel-preset-gatsby": "^1.0.0",
"gatsby": "^4.21.1",
"gatsby-background-image": "^1.6.0",
"gatsby-core-utils": "^3.21.0",
"gatsby-plugin-google-analytics": "^4.21.0",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-manifest": "^4.21.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-react-helmet": "^5.21.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-plugin-sitemap": "^5.21.0",
"gatsby-plugin-styled-components": "^5.21.0",
"gatsby-plugin-webpack-size": "^2.0.1",
"gatsby-source-filesystem": "^4.21.1",
"gatsby-transformer-json": "^4.21.0",
"gatsby-transformer-remark": "^5.21.0",
"gatsby-transformer-sharp": "^4.21.0",
"gbimage-bridge": "^0.1.4",
"intersection-observer": "^0.5.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^6.1.0",
"react-slick": "^0.27.13",
"react-spring": "^8.0.27",
"react-use": "^17.2.1",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"chrome-launcher": "^0.10.5",
"core-js": "^2.6.2",
"directory-named-webpack-plugin": "^4.0.0",
"eslint-loader": "^2.1.1",
"favicons": "^6.2.2",
"lighthouse": "^4.0.0",
"mkdirp": "^0.5.1",
"prettier": "^1.16.0"
}
}