-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ecosphere",
"version": "0.1.0",
"private": true,
"description": "EcoSphere — Supply-Chain Carbon Intelligence Platform",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"seed:demo": "tsx scripts/seed-demo.ts",
"reset:demo": "tsx scripts/reset-demo.ts",
"db:studio": "prisma studio",
"postinstall": "prisma generate",
"typecheck": "tsc --noEmit",
"validate:env": "tsx scripts/validate-env.ts",
"predev": "npm run validate:env",
"prebuild": "npm run validate:env"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"@hookform/resolvers": "^3.9.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.20.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-virtual": "^3.14.6",
"@xyflow/react": "^12.3.2",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"html-to-image": "^1.11.13",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"leaflet": "^1.9.4",
"lucide-react": "^0.451.0",
"next": "^14.2.22",
"next-auth": "^4.24.8",
"next-intl": "^4.13.2",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-leaflet": "^4.2.1",
"recharts": "^2.12.7",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"xlsx": "^0.18.5",
"zod": "^3.23.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.14",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.16.10",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.22",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.18.0"
},
"allowScripts": {
"@prisma/client@5.22.0": true,
"@prisma/engines@5.22.0": true,
"core-js@3.49.0": true,
"esbuild@0.28.1": true,
"prisma@5.22.0": true,
"unrs-resolver@1.12.2": true
}
}