-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "gift-equation",
"description": "Gift shopping made easy",
"version": "0.0.1",
"private": true,
"author": "Chris Lott <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "yarn dev",
"test": "yarn type-check && yarn lint",
"type-check": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"resolutions": {
"@types/react": "16.7.18"
},
"dependencies": {
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"@rebass/emotion": "^3.0.0",
"babel-plugin-styled-components": "^1.10.0",
"fast-memoize": "^2.5.1",
"gatsby": "^2.0.91",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-emotion": "^4.0.1",
"gatsby-plugin-google-tagmanager": "^2.0.7",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-netlify": "^2.0.6",
"gatsby-plugin-offline": "^2.0.21",
"gatsby-plugin-react-helmet": "^3.0.5",
"gatsby-plugin-sharp": "^2.0.17",
"gatsby-plugin-sitemap": "^2.0.4",
"gatsby-plugin-styled-components": "^3.0.4",
"gatsby-plugin-typescript": "^2.0.3",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.16",
"gatsby-source-google-sheets": "^1.1.1",
"gatsby-transformer-sharp": "^2.1.10",
"lodash.sortby": "^4.7.0",
"modern-normalize": "^0.5.0",
"normalize.css": "^8.0.1",
"polished": "^2.3.3",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-helmet": "^5.2.0",
"react-virtualized": "^9.21.0",
"rebass": "^3.0.1",
"styled-components": "^4.1.3",
"typescript": "^3.2.4",
"use-resize-observer": "^3.1.0"
},
"devDependencies": {
"@stoplight/scripts": "^4.1.0",
"@types/classnames": "^2.2.7",
"@types/lodash.sortby": "^4.7.4",
"@types/node": "^10.12.18",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"@types/react-helmet": "^5.0.8",
"@types/react-virtualized": "^9.18.12",
"@types/rebass": "^3.0.3",
"@types/styled-system": "^3.1.1",
"gh-pages": "^2.0.1",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"tslint-config-blvd": "^1.2.1",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1"
},
"prettier": {
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
}