-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.98 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "vite build && vite build --ssr",
"build:icons": "tsx build-icons.ts",
"deploy": "fly deploy --remote-only",
"dev": "remix vite:dev",
"dev:dbServer": "cockroach demo --insecure --no-example-database",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/api"
],
"dependencies": {
"@conform-to/react": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"@epic-web/cachified": "^4.0.0",
"@prisma/client": "^5.19.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@remix-run/node": "2.11.2",
"@remix-run/react": "2.11.2",
"@remix-run/serve": "^2.11.2",
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"gsap": "^3.12.5",
"isbot": "^5.1.17",
"lru-cache": "^11.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^10.0.5",
"rehype": "^13.0.1",
"rehype-parse": "^9.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remix-auth": "^3.7.0",
"remix-auth-form": "^1.5.0",
"remix-params-helper": "^0.5.1",
"remix-typedjson": "^0.4.1",
"remix-utils": "^7.6.0",
"split-type": "^0.3.4",
"tailwind-merge": "^2.5.2",
"tiny-invariant": "^1.3.3",
"tmi.js": "^1.8.5",
"unified": "^11.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@remix-run/dev": "2.11.2",
"@remix-run/eslint-config": "2.11.2",
"@sly-cli/sly": "^1.14.0",
"@types/bcryptjs": "^2.4.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/tmi.js": "^1.8.6",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
"eslint-plugin-perfectionist": "^3.5.0",
"glob": "^11.0.0",
"node-html-parser": "^6.1.13",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.19.1",
"remix-development-tools": "^4.4.1",
"remix-flat-routes": "^0.6.5",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-tsconfig-paths": "^5.0.1"
},
"engines": {
"node": ">=18"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}