-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "nextjs-typescript-starter",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"docker:build": "source .env && docker build -t $DOCKER_IMAGE_NAME .",
"docker:run": "source .env && docker run -p $DOCKER_PORT:3000 $DOCKER_IMAGE_NAME"
},
"dependencies": {
"@turf/buffer": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/jsts": "^2.7.1",
"geojson": "^0.5.0",
"memoizee": "^0.4.15",
"next": "^12.1.6",
"ol": "^6.14.1",
"proj4": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.1",
"recoil": "^0.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/geojson": "^7946.0.8",
"@types/memoizee": "^0.4.7",
"@types/node": "17.0.8",
"@types/proj4": "^2.5.2",
"@types/react": "17.0.38",
"@types/uuid": "^8.3.4",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"next-transpile-modules": "^9.0.0",
"typescript": "4.5.4"
},
"packageManager": "[email protected]"
}