-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.48 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.48 KB
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": "jsne-website",
"version": "1.0.0",
"private": true,
"description": "jsne-website",
"author": "nerdyman",
"keywords": [
"gatsby"
],
"packageManager": "yarn@1.22.18",
"workspaces": [
"libs/*"
],
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions",
"not dead",
"not ie > 0",
"not op_mini all"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pretty-quick --staged",
"eslint --fix"
],
"**/*.{css,md}": [
"pretty-quick --staged"
]
},
"scripts": {
"bootstrap": "corepack disable && corepack enable && yarn install --frozen-lockfile",
"build": "gatsby build",
"build:debug": "env NODE_ENV=production DEBUG_BUILD=true gatsby build",
"develop": "gatsby develop",
"clean": "rm -rf ./src/generated && gatsby clean",
"dx": "yarn run bootstrap && yarn run prepare && cp ./.env.example .env",
"lint": "eslint . && prettier --check .",
"nuke": "rm -rf node_modules && gatsby clean",
"prepare": "husky install",
"serve": "gatsby serve",
"start": "gatsby develop",
"storybook": "start-storybook --no-open -p 6006",
"storybook:build": "build-storybook",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@stitches/react": "^1.2.8",
"gatsby": "^4.17.1",
"gatsby-plugin-image": "^2.17.0",
"gatsby-plugin-manifest": "^4.17.0",
"gatsby-plugin-mdx": "^3.17.0",
"gatsby-plugin-preload-fonts": "^3.17.0",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sharp": "^4.17.0",
"gatsby-plugin-sitemap": "^5.17.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"gatsby-plugin-typegen": "^3.0.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.27",
"gatsby-source-contentful": "^7.15.0",
"gatsby-source-filesystem": "^4.17.0",
"gatsby-transformer-sharp": "^4.17.0",
"mapbox-gl": "^2.9.1",
"modern-normalize": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-polymorphic-box": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.2.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/mapbox-gl": "^2.7.3",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "16",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"storybook-addon-gatsby": "^0.0.5",
"typescript": "4.6.4"
}
}