-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.69 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
{
"name": "kalco",
"license": "MIT",
"author": "<[email protected]>",
"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",
"now-build": "npm run build",
"commit": "npx git-cz"
},
"greenkeeper": {
"ignore": [
"ava",
"core-js"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.js\"",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@reach/dialog": "^0.6.0",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.6.0",
"babel-plugin-styled-components": "^1.10.0",
"feather-icons": "^4.21.0",
"firebase": "^7.14.2",
"gatsby": "^2.3.26",
"gatsby-image": "^2.0.39",
"gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-plugin-sitemap": "^2.0.12",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-plugin-webpack-size": "^0.0.3",
"gatsby-source-filesystem": "^2.0.30",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-remark": "^2.3.9",
"gatsby-transformer-sharp": "^2.1.18",
"intersection-observer": "^0.7.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-firebase-hooks": "^2.1.1",
"react-helmet": "^5.2.0",
"react-particles-js": "^2.6.0",
"react-pose": "^4.0.5",
"react-svg": "^11.0.0",
"smooth-scroll": "^16.1.3",
"styled-components": "^4.1.3",
"styled-flex-component": "^3.0.0",
"styled-media-query": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"chrome-launcher": "^0.12.0",
"core-js": "^2.6.2",
"directory-named-webpack-plugin": "^4.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"favicons": "^5.3.0",
"gatsby-plugin-eslint": "^2.0.3",
"husky": "^3.0.0",
"lighthouse": "^5.0.0",
"mkdirp": "^0.5.1",
"node-gyp": "^6.0.0",
"prettier": "^1.16.0",
"pretty-quick": "^2.0.0"
}
}