-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
106 lines (106 loc) · 3.29 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "newhaven-io",
"license": "MIT",
"author": "newhaven.io <contact@newhaven.io>",
"scripts": {
"develop:gatsby": "gatsby develop",
"develop:lambda": "netlify-lambda serve src/lambda",
"develop": "run-p 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:gatsby": "gatsby build",
"build:lambda": "netlify-lambda build src/lambda",
"build": "run-p build:**",
"lint": "eslint src/**/*.js --fix",
"test:unit": "ava **/*.test.js --verbose",
"test:lighthouse": "ava scripts/lighthouse.js --verbose",
"test": "run-p test/**",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"greenkeeper": {
"ignore": [
"ava",
"core-js"
]
},
"dependencies": {
"@reach/dialog": "^0.7.2",
"@reach/router": "^1.2.1",
"@reach/visually-hidden": "^0.7.2",
"axios": "^0.19.0",
"babel-plugin-styled-components": "^1.10.0",
"date-fns": "^2.5.0",
"framer-motion": "^1.7.0",
"gatsby": "^2.3.26",
"gatsby-image": "^2.0.39",
"gatsby-plugin-offline": "^3.0.14",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^3.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": "^1.0.0",
"gatsby-source-filesystem": "^2.0.30",
"gatsby-source-meetup": "^1.0.0",
"gatsby-transformer-json": "^2.1.11",
"gatsby-transformer-remark": "^2.3.9",
"gatsby-transformer-sharp": "^2.1.18",
"gatsby-transformer-yaml": "^2.2.17",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.15",
"prop-types": "^15.6.2",
"qs": "^6.9.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-recaptcha-v3": "^1.5.0",
"react-headroom": "^3.0.0",
"react-helmet": "^5.2.0",
"react-responsive": "^8.0.1",
"react-typed": "^1.2.0",
"styled-components": "^5.0.0",
"styled-system": "^5.1.2",
"typeface-lato": "^0.0.75",
"typeface-source-sans-pro": "^0.0.75"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@storybook/addon-actions": "^5.2.3",
"@storybook/addon-knobs": "^5.2.4",
"@storybook/addon-links": "^5.2.3",
"@storybook/addons": "^5.2.3",
"@storybook/react": "^5.2.3",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chrome-launcher": "^0.12.0",
"core-js": "^3.2.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"favicons": "^5.4.1",
"gatsby-plugin-eslint": "^2.0.5",
"http-proxy-middleware": "^0.20.0",
"husky": "^4.0.7",
"lighthouse": "^5.5.0",
"mkdirp": "^0.5.1",
"netlify-lambda": "^1.6.3",
"node-gyp": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"svg-react-loader": "^0.4.6"
},
"husky": {
"hooks": {
"pre-push": "pretty-quick --staged && yarn lint"
}
}
}