-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"private": true,
"sideEffects": false,
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"scripts": {
"build": "concurrently \"npm run build:css\" \"npm run build:sass\" \"remix build\"",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:sass\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"build:sass": "node-sass ./styles -o ./app/styles --output-style compressed",
"dev:sass": "npm run build:sass && node-sass -rw ./styles -o ./app/styles",
"start": "remix-serve build"
},
"dependencies": {
"@loaders.gl/core": "^3.2.9",
"@loaders.gl/geopackage": "^3.2.9",
"@loaders.gl/json": "^3.2.9",
"@loaders.gl/kml": "^3.2.9",
"@loaders.gl/polyfills": "^3.2.9",
"@loaders.gl/shapefile": "^3.2.9",
"@mapbox/mapbox-gl-directions": "^4.1.0",
"@prisma/client": "^5.11.0",
"@remix-run/node": "^1.16.0",
"@remix-run/react": "^1.16.0",
"@remix-run/serve": "^1.16.0",
"@remix-run/vercel": "^1.19.3",
"@vercel/postgres": "^0.7.2",
"acorn": "8.8.0",
"aws-sdk": "^2.1225.0",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"daisyui": "^2.36.1",
"deasync": "0.1.28",
"emailjs": "^4.0.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.10.0",
"node-gyp": "^10.1.0",
"node-sass": "^9.0.0",
"react": "^17.0.2",
"react-csv": "^2.2.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-map-gl": "^7.0.19",
"react-search-box": "^2.3.0",
"redux": "4.2.0",
"survey-creator-react": "1.9.60",
"survey-react-ui": "1.9.60"
},
"devDependencies": {
"@remix-run/dev": "^1.16.0",
"@remix-run/eslint-config": "^1.16.0",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.186",
"@types/node": "^18.7.18",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"esbuild-register": "^3.3.3",
"eslint": "^8.20.0",
"postcss": "^8.4.14",
"prisma": "^5.11.0",
"rmx-cli": "^0.3.1",
"tailwindcss": "^3.1.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16"
},
"resolutions": {
"@mapbox/mapbox-gl-directions@^4.1.0": "patch:@mapbox/mapbox-gl-directions@npm%3A4.1.0#./.yarn/patches/@mapbox-mapbox-gl-directions-npm-4.1.0-e1fe04d14c.patch",
"survey-core": "1.9.60",
"survey-creator-core@1.9.60": "patch:survey-creator-core@npm%3A1.9.60#./.yarn/patches/survey-creator-core-npm-1.9.60-6afa5950a5.patch"
}
}