-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "data-management-suite",
"private": true,
"sideEffects": false,
"version": "0.7.0",
"scripts": {
"build": "remix build",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"dev": "remix dev --manual",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"e2e": "npm run e2e:setupdb && npm run e2e:setupplaywright npm run e2e:test",
"e2e:setupdb": "prisma migrate reset -f && prisma db seed",
"e2e:setupplaywright": "playwright install --with-deps",
"e2e:test": "npx remix-serve ./build/index.js & playwright test",
"start": "prisma migrate deploy ; remix-serve ./build/index.js",
"typecheck": "tsc -b"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@azure/msal-browser": "^2.37.1",
"@hookform/resolvers": "^3.3.2",
"@mapbox/geojson-rewind": "^0.5.2",
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@ngneat/falso": "^7.0.1",
"@prisma/client": "^5.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "1.0.6",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/css-bundle": "2.8.1",
"@remix-run/node": "2.3.0",
"@remix-run/react": "2.3.1",
"@remix-run/serve": "2.8.1",
"@remix-validated-form/with-zod": "^2.0.7",
"@tailwindcss/typography": "0.5.10",
"@tanstack/react-table": "^8.11.0",
"@turf/area": "^6.5.0",
"@turf/turf": "^6.5.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"bright": "^0.8.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"dd-trace": "^4.18.0",
"geojson": "^0.5.0",
"isbot": "^3.7.1",
"lru-cache": "^10.0.2",
"lucide-react": "^0.261.0",
"mapbox-gl": "^2.15.0",
"p-pipe": "^4.0.0",
"react": "^18.2.0",
"react-code-blocks": "^0.1.4",
"react-day-picker": "^8.8.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.0",
"react-map-gl": "^7.1.6",
"react-virtuoso": "^4.6.2",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.4.0",
"remix-auth-microsoft": "^2.0.0",
"remix-auth-oauth2": "^1.7.0",
"remix-validated-form": "^5.1.5",
"stac-spec": "github:radiantearth/stac-spec#v1.0.0",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.6",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zod-form-data": "^2.0.2",
"zodix": "^0.4.1"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@remix-run/dev": "2.2.0",
"@remix-run/eslint-config": "2.3.1",
"@types/geojson": "^7946.0.10",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/mapbox-gl": "^2.7.11",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.55.0",
"playwright": "^1.36.1",
"prisma": "^5.11.0",
"stac-ts": "^1.0.0",
"tailwindcss": "^3.3.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}