-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "solar-intel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --forceExit --detectOpenHandles",
"seed": "tsx scripts/seed-db.ts"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.21",
"@tremor/react": "^3.18.7",
"@types/nodemailer": "^7.0.11",
"axios": "^1.13.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express-rate-limit": "^8.2.1",
"framer-motion": "^12.35.0",
"lucide-react": "^0.577.0",
"mongoose": "^9.2.4",
"next": "14.2.35",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.13",
"papaparse": "^5.5.3",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"winston": "^3.19.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^17.3.1",
"eslint": "^8",
"eslint-config-next": "14.2.35",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5"
}
}