-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "ort-frontend",
"private": true,
"sideEffects": [
"*.css.ts"
],
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "wrangler pages download config ort-web --force && remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@lottiefiles/dotlottie-react": "0.8.12",
"@remix-run/cloudflare": "2.11.2",
"@remix-run/cloudflare-pages": "2.11.2",
"@remix-run/react": "2.11.2",
"@remix-run/serve": "2.11.2",
"@sentry/remix": "8.30.0",
"@sentry/vite-plugin": "2.22.4",
"@vanilla-extract/css": "1.15.3",
"isbot": "4.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"uuid": "10.0.0",
"zod": "3.23.8",
"zustand": "4.5.5"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@remix-run/dev": "2.11.2",
"@remix-run/testing": "2.11.2",
"@storybook/addon-actions": "8.3.3",
"@storybook/addon-essentials": "8.3.3",
"@storybook/addon-interactions": "8.3.3",
"@storybook/addon-links": "8.3.3",
"@storybook/blocks": "8.3.3",
"@storybook/react": "8.3.3",
"@storybook/react-vite": "8.3.3",
"@storybook/test": "8.3.3",
"@types/eslint": "8.56.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vanilla-extract/vite-plugin": "4.0.13",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-storybook": "0.8.0",
"husky": "9.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"storybook": "8.3.3",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-tsconfig-paths": "4.3.2",
"wrangler": "3.72.2"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --max-warnings=0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}