-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.79 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
{
"name": "app-18c0",
"private": true,
"version": "0.0.1",
"sideEffects": false,
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve build",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test": "vitest",
"typecheck": "tsc && tsc -p cypress",
"validate": "run-p \"test -- --run\" lint typecheck "
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@arcgis/webpack-plugin": "^4.22.0",
"@prisma/client": "^4.12.0",
"@remix-run/css-bundle": "^1.15.0",
"@remix-run/node": "^1.15.0",
"@remix-run/react": "^1.15.0",
"@remix-run/serve": "^1.15.0",
"axios": "^1.3.5",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.8",
"flowbite": "^1.6.4",
"flowbite-react": "^0.4.2",
"isbot": "^3.6.8",
"mapbox-gl": "^2.14.1",
"maplibre-gl": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-map-gl": "^7.0.23",
"remix-auth": "^3.4.0",
"remix-auth-microsoft": "^2.0.0",
"remix-auth-oauth2": "^1.6.0",
"remix-utils": "^6.1.0",
"swr": "^2.1.5",
"tiny-invariant": "^1.3.1",
"use-supercluster": "^0.4.0",
"usehooks-ts": "^2.9.1",
"video-react": "^0.16.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"binode": "^1.0.5",
"c8": "^7.13.0",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"happy-dom": "^9.8.0",
"msw": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.22",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^3.6.0"
},
"engines": {
"node": ">=14"
}
}