-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.67 KB
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
{
"name": "dft",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"start": "remix-serve ./build/server/index.js",
"build": "prisma generate && remix vite:build",
"typecheck": "tsc",
"backup-sql": "DATE=`date +%Y-%m-%d_%H-%M-%S` && pg_dump $POSTGRES_URL > backups/backup-$DATE.sql",
"backup": "DATE=`date +%Y-%m-%d_%H-%M-%S` && pg_dump -Fc $POSTGRES_URL > backups/backup-$DATE.dump",
"db-diff": "prisma migrate diff --from-schema-datasource ./schema.prisma --to-schema-datamodel ./schema.prisma"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.6",
"@remix-run/node": "^2.10.2",
"@remix-run/react": "^2.10.2",
"@remix-run/serve": "^2.10.2",
"@vercel/analytics": "^1.0.2",
"@vercel/kv": "^1.0.1",
"ai": "^3.2.37",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cookie": "^0.5.0",
"cowpunk-auth": "^0.0.7",
"csv-parser": "^3.0.0",
"d3": "^7.9.0",
"density-clustering": "^1.3.0",
"eslint": "^8.57.0",
"inngest": "^2.5.0",
"isbot": "^3.6.8",
"lucide-react": "^0.284.0",
"nanoid": "^4.0.2",
"openai": "^4.52.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.2",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remix": "^2.10.3",
"tailwind-merge": "^1.14.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@prisma/client": "^5.14.0",
"@remix-run/dev": "^2.10.3",
"@swc/core": "^1.3.73",
"@types/d3": "^7.4.3",
"@types/density-clustering": "^1.3.3",
"@types/jest": "^29.5.8",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/remix": "^2.10.3",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.2",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}