-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.33 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"dev": "npm-run-all build --parallel \"dev:*\"",
"start": "cross-env NODE_ENV=production npm run wrangler",
"typecheck": "tsc",
"wrangler": "wrangler pages dev ./public",
"format": "prettier --write ."
},
"dependencies": {
"@remix-run/cloudflare": "^1.14.0",
"@remix-run/cloudflare-pages": "^1.14.0",
"@remix-run/react": "^1.14.0",
"cross-env": "^7.0.3",
"isbot": "^3.6.5",
"lucide-react": "^0.127.0",
"mapbox-gl": "^2.14.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.0.23"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "^1.14.0",
"@remix-run/eslint-config": "^1.14.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "^8.27.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "^3.2.7",
"typescript": "^4.8.4",
"wrangler": "^2.2.1"
},
"engines": {
"node": ">=16.13"
}
}