forked from danreeves/darkti.de
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.94 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
{
"name": "darkti.de",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "run-p dev:*",
"dev:server": "npm start",
"dev:db": "pscale\\pscale connect darktide development --port 3309",
"build": "prisma generate && vite build && vite build --ssr",
"start": "tsx server/server.ts",
"typecheck": "tsc",
"update-db": "prisma db push",
"lint": "eslint .",
"prepare": "husky install",
"pscale-login": "pscale\\pscale auth login"
},
"dependencies": {
"@danreeves/remix-auth-steam": "^2.0.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@hono/node-server": "^1.3.1",
"@prisma/client": "^5.6.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@remix-run/dev": "^2.3.1",
"@remix-run/node": "^2.3.1",
"@remix-run/react": "^2.3.1",
"@remix-run/serve": "^2.3.1",
"@remix-run/server-runtime": "^2.3.1",
"@tailwindcss/forms": "^0.5.7",
"@thoughtbot/tailwindcss-aria-attributes": "^0.2.0",
"@types/accept-language-parser": "^1.5.6",
"@types/memoizee": "^0.4.11",
"accept-language-parser": "^1.5.0",
"autoprefixer": "^10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"compression": "^1.7.4",
"croner": "^7.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"framer-motion": "^10.16.12",
"hono": "^3.10.4",
"husky": "^8.0.3",
"is-ip": "^5.0.1",
"isbot": "^3.7.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.294.0",
"memoizee": "^0.4.15",
"morgan": "^1.10.0",
"nanoid": "^5.0.4",
"nanoid-dictionary": "^4.3.0",
"next-themes": "^0.2.1",
"node-fetch-cache": "^3.1.3",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"react": "^18.2.0",
"react-aria-components": "^1.0.0-rc.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-hono": "^0.0.14",
"remix-utils": "^7.3.0",
"replace-in-file": "^7.0.2",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.6.2",
"valibot": "^0.21.0",
"zod": "^3.22.4",
"zodix": "^0.4.4",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.3.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/lodash-es": "^4.17.12",
"@types/morgan": "^1.9.9",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node-fetch-cache": "^3.0.4",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"eslint": "^8.55.0",
"npm-run-all": "^4.1.5",
"prettier-plugin-tailwindcss": "^0.5.7",
"typescript": "5.3"
},
"engines": {
"node": "18.16.0"
},
"prettier": {
"semi": false
}
}