-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.6 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
112
{
"name": "cmpt372-project",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "remix-serve ./build/server/index.js",
"lint": "node tools/lint-cli --typescript --eslint",
"storybook": "cross-env STORYBOOK=true storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"postinstall": "prisma generate",
"prepare": "node -e \"if (!process.env.CI){process.exit(1)}\" || husky",
"gcp-build": "pnpm run build"
},
"packageManager": "[email protected]+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@prisma/client": "^5.12.1",
"@radix-ui/react-icons": "^1.3.0",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@uidotdev/usehooks": "^2.4.1",
"auth0": "^4.3.1",
"content-security-policy-builder": "^2.1.1",
"framer-motion": "^11.0.25",
"isbot": "^5.1.4",
"prisma": "^5.12.1",
"react": "18.3.0-next-fecc288b7-20221025",
"react-dom": "18.3.0-next-fecc288b7-20221025",
"react-hook-form": "^7.51.2",
"remix-auth": "^3.6.0",
"remix-auth-auth0": "^1.10.0",
"remix-hook-form": "^4.3.1",
"ts-luxon": "^4.5.2",
"ts-toolbelt": "^9.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.2",
"@remix-run/dev": "^2.8.1",
"@remix-run/server-runtime": "^2.8.1",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/react-vite": "^8.0.6",
"@storybook/test": "^8.0.6",
"@stylistic/eslint-plugin": "^1.7.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@types/eslint": "^8.56.7",
"@types/lint-staged": "^13.3.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unicorn": "^52.0.0",
"execa": "^8.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"listr2": "^8.0.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-load-config": "^5.0.3",
"postcss-preset-env": "^9.5.4",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"storybook": "^8.0.6",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=20.11.0"
},
"pnpm": {
"overrides": {
"react-hook-form": "$react-hook-form",
"react": "$react",
"react-dom": "$react-dom"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"prisma": {
"seed": "pnpm exec tsx prisma/test.seed.ts"
}
}