-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "coastercred",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Nicholas Bottone",
"email": "nick@bottone.io"
},
"homepage": "https://coastercred.bottone.io",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite --open",
"dev:backend": "convex dev",
"build": "vite build",
"lint": "tsc -p convex -noEmit --pretty false && tsc -b tsconfig.app.json tsconfig.node.json --pretty false && convex dev --once && vite build"
},
"dependencies": {
"@convex-dev/auth": "^0.0.94",
"clsx": "^2.1.1",
"convex": "^1.42.1",
"openai": "^6.46.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "~10.5.2",
"dotenv": "^16.6.1",
"eslint": "^9.39.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"postcss": "~8.5.17",
"prettier": "^3.9.5",
"tailwindcss": "~3.4.19",
"typescript": "~5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^6.4.3",
"vite-plugin-pwa": "^1.3.0"
}
}