-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "my-app",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"process": "python3 ./public/data/csv_to_json.py && node ./public/data/json_to_sqlite.cjs"
},
"dependencies": {
"@vercel/analytics": "^1.3.2",
"@vercel/speed-insights": "^1.0.14",
"axios": "^1.7.7",
"better-sqlite3": "^11.3.0",
"chart.js": "^4.4.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"csv-parser": "^3.0.0",
"debounce": "^2.1.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lru-cache": "^11.0.1",
"lucide-react": "^0.381.0",
"next": "^14.2.15",
"node-fetch": "^3.3.2",
"node-gyp": "^10.2.0",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-icon": "^1.0.0",
"react-icons": "^5.3.0",
"recharts": "^2.12.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "20.16.13",
"@types/react": "18.3.11",
"@types/react-dom": "^18",
"@types/sqlite3": "^3.1.11",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "5.6.3"
}
}