-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.71 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
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
{
"name": "100-cims",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"postbuild": "datadog-ci sourcemaps upload .next/static --service=100-cims --release-version=$VERCEL_GIT_COMMIT_SHA --minified-path-prefix=/_next/static --repository-url=https://github.com/thomas-lebeau/100-cims",
"build": "next build",
"start": "next start",
"lint": "next lint -f gha",
"test": "jest",
"test:watch": "jest --watch",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@datadog/browser-rum": "^5.32.0",
"@mapbox/polyline": "^1.2.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.0.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@tanstack/react-query": "^5.62.3",
"@tanstack/react-query-devtools": "^5.62.3",
"@tanstack/react-table": "^8.20.5",
"@turf/point-to-line-distance": "^7.1.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"@vercel/toolbar": "^0.1.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"dd-trace": "^5.28.0",
"lucide-react": "^0.468.0",
"mapbox-gl": "^3.8.0",
"next": "^14.2.15",
"next-auth": "^4.24.11",
"nodemailer": "^6.9.16",
"playwright": "^1.49.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serialize-error": "^11.0.3",
"tailwind-merge": "^2.5.5",
"tailwindcss": "3.4.16",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zod-fetch": "^0.1.1"
},
"devDependencies": {
"@datadog/datadog-ci": "^2.45.1",
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@types/mapbox__polyline": "^1.0.5",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "10.4.20",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.7",
"eslint": "8.56.0",
"eslint-config-next": "^15.0.4",
"eslint-formatter-gha": "^1.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "8.4.49",
"prettier": "^3.4.2",
"prisma": "^6.0.1",
"ts-node": "^10.9.2",
"type-testing": "^0.2.0",
"typescript": "^5.7.2"
}
}