-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.15 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
113
114
{
"private": true,
"sideEffects": false,
"version": "3.3.1",
"type": "module",
"scripts": {
"postinstall": "tsx postinstall.ts",
"build": "remix vite:build",
"dev": "cross-env NODE_ENV=development tsx ./server/server",
"start": "cross-env NODE_ENV=production tsx ./server/server",
"start:build": "npm run build && npm run start",
"typecheck": "tsc -b",
"theme": "chakra-cli tokens app/components/utils/theme.tsx",
"format": "biome format --write app",
"lint": "biome lint --apply-unsafe app",
"fix": "pnpm run format && pnpm run lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.529.0",
"@aws-sdk/lib-storage": "^3.529.0",
"@chakra-ui/anatomy": "^2.2.2",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/progress": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/react-use-size": "^2.0.9",
"@chakra-ui/theme-tools": "^2.1.2",
"@chakra-ui/utils": "^2.0.14",
"@choc-ui/chakra-autocomplete": "^5.3.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@prisma/client": "^4.7.1",
"@remix-run/express": "2.8.1",
"@remix-run/node": "2.8.1",
"@remix-run/react": "2.8.1",
"@remix-run/serve": "2.8.1",
"@remix-run/server-runtime": "^2.8.1",
"@remix-sse/server": "^1.0.1",
"@resvg/resvg-js": "^2.6.2",
"@rollup/rollup-win32-x64-msvc": "^4.20.0",
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^2.2.2",
"ansi-to-html": "^0.7.2",
"chakra-react-select": "^4.7.6",
"color": "^4.2.3",
"compression": "^1.7.4",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"fast-average-color-node": "^3.0.0",
"fast-xml-parser": "^4.3.5",
"framer-motion": "^7.8.1",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^4.3.0",
"javascript-time-ago": "^2.5.9",
"optional": "^0.1.4",
"react": "^18.2.0",
"react-countup": "^6.5.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-markdown": "^9.0.1",
"react-time-ago": "^7.2.1",
"recharts": "^2.12.2",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remix": "2.8.1",
"remix-auth-discord": "^1.2.1",
"remix-typedjson": "^0.4.1",
"remix-utils": "^7.5.0",
"satori": "^0.10.13",
"sharp": "^0.33.4",
"stripe": "^14.10.0",
"three": "^0.162.0",
"tiny-invariant": "^1.3.1",
"victory": "^37.0.2",
"ws": "^8.16.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@chakra-ui/cli": "^2.3.0",
"@remix-run/dev": "2.8.1",
"@remix-run/eslint-config": "2.8.1",
"@types/color": "^3.0.6",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node-ipc": "^9.2.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/source-map-support": "^0.5.10",
"@types/three": "^0.162.0",
"@types/ws": "^8.5.10",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ioredis": "^5.3.2",
"is-ip": "^5.0.1",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"prisma": "^4.7.1",
"source-map-support": "^0.5.21",
"tsx": "^4.7.1",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1"
},
"pnpm": {
"supportedArchitectures": {
"os": ["linux"],
"cpu": ["x64"]
}
},
"engines": {
"node": ">=21"
}
}