-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.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
{
"private": true,
"sideEffects": false,
"type": "module",
"name": "polyglotize",
"author": "Samuel Jensen",
"license": "MIT",
"engines": {
"node": "20",
"pnpm": "9"
},
"imports": {
"#app/*": "./app/*"
},
"scripts": {
"dev": "node ./server.js",
"build": "remix vite:build",
"start": "cross-env NODE_ENV=production node ./server.js",
"lint": "eslint .",
"format": "prettier . --write",
"typecheck": "tsc"
},
"dependencies": {
"@conform-to/react": "1.2.2",
"@conform-to/zod": "1.2.2",
"@radix-ui/react-collapsible": "1.1.2",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-navigation-menu": "1.2.3",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-scroll-area": "1.2.2",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-slot": "1.1.1",
"@react-router/remix-config-routes-adapter": "0.0.0-nightly-bf7ecb711-20240911",
"@remix-run/express": "2.15.1",
"@remix-run/node": "2.15.1",
"@remix-run/react": "2.15.1",
"@tailwindcss/typography": "0.5.15",
"@types/morgan": "1.9.9",
"address": "2.0.3",
"chalk": "5.4.0",
"class-variance-authority": "0.7.1",
"close-with-grace": "2.1.0",
"clsx": "2.1.1",
"cmdk": "1.0.4",
"cross-env": "7.0.3",
"deepl-node": "1.15.0",
"dotenv": "16.4.7",
"elevenlabs": "1.50.2",
"express": "4.21.2",
"get-port": "7.1.0",
"isbot": "4",
"lucide-react": "0.469.0",
"morgan": "1.10.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"remix-flat-routes": "0.6.5",
"remix-utils": "7.7.0",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"vaul": "1.1.2",
"zod": "3.24.1"
},
"devDependencies": {
"@epic-web/config": "1.16.4",
"@remix-run/dev": "2.15.1",
"@types/express": "5.0.0",
"@types/node": "22.10.1",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"autoprefixer": "10.4.20",
"eslint": "9.16.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"vite": "6.0.3"
},
"prettier": "@epic-web/config/prettier"
}