-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
110 lines (110 loc) · 3.27 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
{
"name": "react-router-website",
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"format": "prettier --write . && npm run lint:fix",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "react-router-serve ./build/server/index.js",
"test": "vitest",
"typecheck": "react-router typegen && tsc",
"push:stage": "git tag -f stage && git push origin stage -f"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@docsearch/css": "^3.6.0",
"@docsearch/react": "^3.6.0",
"@react-router/node": "7.0.0-pre.5",
"@react-router/serve": "7.0.0-pre.5",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
"escape-goat": "^4.0.0",
"follow-redirects": "^1.15.2",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"gunzip-maybe": "^1.4.2",
"isbot": "^3.6.10",
"iso-639-1": "^2.1.15",
"lodash.merge": "^4.6.2",
"lru-cache": "^7.18.3",
"octokit": "^2.0.14",
"parse-link-header": "^2.0.0",
"parse-numeric-range": "^1.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "7.0.0-pre.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"semver": "^7.5.0",
"shiki": "^0.14.7",
"sort-by": "^1.2.0",
"tar": "^6.1.14",
"tar-stream": "^3.0.0",
"tiny-invariant": "^1.3.1",
"typedoc": "^0.26.5",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@react-router/dev": "7.0.0-pre.5",
"@testing-library/jest-dom": "^5.16.5",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.56.6",
"@types/follow-redirects": "^1.14.1",
"@types/gunzip-maybe": "^1.4.0",
"@types/hast": "^2.3.4",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.16.3",
"@types/parse-link-header": "^2.0.1",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.3",
"@types/semver": "^7.3.13",
"@types/tar": "^6.1.4",
"@types/tar-stream": "^2.2.2",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"autoprefixer": "^10.4.19",
"binode": "^1.0.5",
"c8": "^7.13.0",
"cross-env": "^7.0.3",
"cssnano": "^6.1.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^9.10.9",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.4.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=20"
}
}