-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.25 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"clean": "rm -rf ./build",
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/tailwind.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -o ./app/tailwind.css --watch",
"dev:netlify": "cross-env NODE_ENV=development netlify dev",
"deploy:netlify": "yarn clean && yarn build && netlify deploy --prod",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.0.6",
"@remix-run/react": "^1.0.6",
"@remix-run/serve": "^1.0.6",
"cross-env": "^7.0.3",
"leaflet": "^1.7.1",
"leaflet-geosearch": "^3.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.2",
"react-leaflet-universal": "^2.2.1",
"remix": "^1.0.6"
},
"devDependencies": {
"@remix-run/dev": "^1.0.6",
"@types/leaflet": "^1.7.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"concurrently": "^6.4.0",
"tailwindcss": "^3.0.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}