-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
46 lines (46 loc) · 1.27 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:create-migration": "dotenv -c local -- prisma migrate dev --create-only",
"db:migrate-dev": "dotenv -c local -- prisma migrate dev",
"script": "npx dotenv -c prod -- node -r ts-node/register",
"postinstall": "prisma generate"
},
"dependencies": {
"@ctrl/react-adsense": "^1.6.1",
"@headlessui/react": "^1.6.6",
"@prisma/client": "^4.1.0",
"@tailwindcss/typography": "^0.5.4",
"@turf/turf": "^6.5.0",
"@types/mapbox-gl": "^2.7.3",
"lodash": "^4.17.21",
"lru-cache": "^7.13.1",
"mapbox-gl": "^2.9.2",
"next": "^12.3.0",
"next-i18next": "^12.0.0",
"next-usequerystate": "^1.7.2",
"prisma": "^4.1.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"swr": "^1.3.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/node-fetch": "2.6",
"@types/react": "^18.0.15",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^6.0.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"node-fetch": "^2.6",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.2",
"tsconfig-paths": "^4.0.0",
"typescript": "4.7.2"
}
}