-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.54 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
{
"name": "gatsby-theme-community",
"version": "0.1.0",
"main": "index.ts",
"license": "MIT",
"peerDependencies": {
"gatsby": "^2.18.18",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.15",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-common-types": "^0.2.21",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@mdx-js/loader": "^1.3.0",
"@mdx-js/mdx": "^1.5.3",
"@mdx-js/react": "^1.5.3",
"@types/react-helmet": "^5.0.9",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.18",
"@types/theme-ui": "^0.2.7",
"babel-plugin-remove-graphql-queries": "^2.7.2",
"gatsby-plugin-manifest": "^2.2.37",
"gatsby-plugin-mdx": "^1.0.67",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sharp": "^2.3.13",
"gatsby-plugin-theme-ui": "^0.2.53",
"gatsby-plugin-typescript": "^2.1.26",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-remark": "^2.6.48",
"gatsby-transformer-sharp": "^2.3.12",
"gatsby-transformer-yaml": "^2.2.23",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"path": "^0.12.7",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.2",
"theme-ui": "^0.2.52",
"typescript": "^3.7.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/preset-typescript": "^1.2.0",
"@storybook/react": "^5.3.3",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.0",
"gatsby": "^2.18.18",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"tslint-react-hooks": "^2.2.1"
},
"scripts": {
"storybook": "NODE_ENV=production start-storybook -s public",
"build-storybook": "NODE_ENV=production build-storybook -s public",
"tslint": "tslint -p tsconfig.json -c tslint.json -t stylish",
"tslint-fix": "tslint --fix -p tsconfig.json -c tslint.json -t stylish",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"typescript": "tsc -p tsconfig.json"
}
}