forked from GlobalEmergency/DeaMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.91 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.91 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "deamap",
"version": "2.0.0",
"private": true,
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"*.{css,scss}": [
"prettier --write"
]
},
"scripts": {
"dev": "next dev --turbopack",
"build": "node scripts/migrate.js && next build",
"start": "next start",
"postinstall": "prisma generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"validate": "npm run format:check && npm run lint && npm run type-check",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test:unit && npm run test:integration",
"db:seed": "tsx prisma/seed.ts",
"db:seed:dummy": "tsx prisma/seed-dummy.ts",
"db:studio": "prisma studio",
"db:branch:check": "node scripts/branch-database.js check",
"db:branch:list": "node scripts/branch-database.js list",
"db:migrate": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"migrate:legacy": "tsx scripts/legacy-migration/migrate-legacy-deas.ts",
"migrate-cdn": "tsx scripts/migrate-image-urls-to-cdn.ts",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.993.0",
"@aws-sdk/client-ses": "^3.993.0",
"@batchactions/core": "^0.0.6",
"@batchactions/import": "^0.0.4",
"@batchactions/state-prisma": "^0.0.2",
"@paralleldrive/cuid2": "^3.3.0",
"@prisma/adapter-pg": "^7.4.0",
"@vercel/analytics": "^1.6.0",
"@vercel/functions": "^3.4.2",
"@vercel/speed-insights": "^1.3.0",
"@vladmandic/face-api": "^1.7.15",
"axios": "^1.13.5",
"bcryptjs": "^3.0.3",
"canvas": "^3.2.1",
"csv-parse": "^6.1.0",
"dotenv": "^17.3.1",
"jose": "^6.1.2",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"papaparse": "^5.5.3",
"proj4": "^2.20.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.0.0",
"sharp": "^0.34.5",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.3.0",
"@next/eslint-plugin-next": "^16.1.6",
"@playwright/test": "^1.58.2",
"@prisma/client": "^7.4.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/leaflet": "^1.9.21",
"@types/node": "24.10.1",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.16.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.6.3",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"pg": "^8.18.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prisma": "^7.4.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"vitest": "^4.0.18"
}
}