-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "mapprint-next",
"version": "0.1.0",
"private": true,
"module": "esnext",
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"tailwind:prepare": "tw-patch install && tw-patch extract",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "npx prisma generate && next dev",
"build": "npm run tailwind:prepare && npx prisma generate && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write '**/*.(ts|tsx)'",
"pages:build": "npx @cloudflare/next-on-pages"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.8.1",
"@turf/turf": "^6.5.0",
"@types/geojson": "^7946.0.13",
"esm": "^3.2.25",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"maplibre-gl": "^3.6.2",
"next": "14.1.0",
"next-auth": "5.0.0-beta.5",
"osmtogeojson": "^3.0.0-beta.5",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-icons": "^5.0.1",
"react-map-gl": "^7.1.7",
"sass": "^1.70.0",
"ts-md5": "^1.3.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.33",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "5.8.1",
"tailwindcss": "^3.4.1",
"tailwindcss-patch": "^2.2.2",
"ts-node": "^10.9.2",
"typescript": "^5",
"unplugin-tailwindcss-mangle": "^2.2.2"
}
}