-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.88 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
107
108
109
110
111
{
"name": "electric-hive-website-2.0",
"private": true,
"description": "Revamp project for Electric Hive website",
"version": "0.1.1",
"license": "0BSD",
"author": "Tristan Schrader",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write .",
"test": "jest --runInBand",
"lint": "eslint **/*.{js,ts,jsx,tsx,md,mdx}",
"new-component": "hygen component new",
"storybook": "NODE_ENV=production start-storybook -p 6006",
"build-storybook": "NODE_ENV=production build-storybook",
"deploy:github": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^3.13.1",
"gatsby-plugin-image": "^1.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-mdx": "^2.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-postcss": "^4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.0",
"gatsby-plugin-sitemap": "^4.10.0",
"gatsby-remark-autolink-headers": "^4.11.0",
"gatsby-remark-copy-linked-files": "^4.11.0",
"gatsby-remark-images": "^5.11.0",
"gatsby-remark-prismjs": "^5.11.0",
"gatsby-remark-responsive-iframe": "^4.11.0",
"gatsby-remark-smartypants": "^4.11.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-json": "^3.14.0",
"gatsby-transformer-remark": "^4.11.0",
"gatsby-transformer-sharp": "^3.14.0",
"prismjs": "^1.25.0",
"ramda": "^0.28.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-use": "^17.3.1",
"workbox": "^0.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@react-theming/storybook-addon": "^1.1.1",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-docs": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/builder-webpack5": "^6.3.8",
"@storybook/manager-webpack5": "^6.3.8",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.3.8",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.14",
"autoprefixer": "^10.3.5",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-mdx": "^1.15.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"gatsby-plugin-root-import": "^2.0.7",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-plugin-testing": "^0.3.5",
"gh-pages": "^5.0.0",
"hygen": "^6.1.0",
"jest": "^27.2.1",
"jest-jasmine2": "^27.2.2",
"postcss": "^8.3.7",
"prettier": "^2.4.1",
"storybook-addon-gatsby": "^0.0.2",
"styled-components": "^5.3.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/tomstrat/hive-website"
},
"bugs": {
"url": "https://github.com/tomstrat/hive-website/issues"
},
"browserslist": [
">1%",
"defaults",
"last 1 version",
"Firefox ESR",
"not dead"
]
}