-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:frontend": "vite",
"dev:backend": "tsx watch server/index.ts",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@supabase/supabase-js": "^2.50.3",
"better-sqlite3": "^12.2.0",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"framer-motion": "^12.23.0",
"jsonwebtoken": "^9.0.3",
"lightweight-charts": "^5.1.0",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-flip-numbers": "^3.0.9",
"react-popper": "^2.3.0",
"react-router-dom": "^7.6.3",
"recharts": "^3.1.0",
"sql.js": "^1.13.0",
"styled-components": "^6.1.19"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"concurrently": "^9.2.1",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2"
}
}