-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "blitz-site-v2",
"version": "1.0.0",
"private": true,
"volta": {
"node": "14.18.1",
"yarn": "1.22.17"
},
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider && blitz dev",
"start": "blitz start",
"build": "blitz build",
"lint": "yarn lint:code && yarn lint:docs",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:docs": "alex app/pages/docs/**/*.mdx",
"english-slugify": "node scripts/english-slugify.mjs",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@docsearch/react": "3.0.0-alpha.42",
"@octokit/rest": "18.12.0",
"@reach/rect": "0.16.0",
"@sindresorhus/slugify": "2.1.0",
"@visx/hierarchy": "2.1.2",
"@visx/responsive": "2.4.1",
"blitz": "0.45.3",
"clsx": "1.1.1",
"fathom-client": "3.2.0",
"focus-visible": "5.2.0",
"gray-matter": "4.0.3",
"next-themes": "0.0.15",
"prismjs": "1.27.0",
"react": "18.0.0-alpha-a0d2d1e1e",
"react-dom": "18.0.0-alpha-a0d2d1e1e",
"react-icons": "4.3.1",
"react-player": "2.9.0",
"react-select": "5.2.1",
"typeface-libre-franklin": "1.1.13",
"typeface-roboto": "1.1.13",
"typeface-roboto-mono": "1.1.13",
"typescript": "4.5.2",
"unist-util-visit": "2.0.3"
},
"devDependencies": {
"@mdx-js/loader": "1.6.22",
"@next/bundle-analyzer": "11.1.2",
"@svgr/webpack": "6.1.1",
"@tailwindcss/typography": "0.4.1",
"alex": "10.0.0",
"autoprefixer": "10.4.0",
"babel-plugin-preval": "5.0.0",
"eslint": "7.32.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"file-loader": "6.2.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"minimatch": "3.0.8",
"postcss": "8.4.4",
"postcss-nested": "5.0.6",
"prettier": "2.5.1",
"pretty-quick": "3.1.2",
"simple-functional-loader": "1.2.1",
"tailwindcss": "2.2.19"
}
}