generated from remix-run/blues-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 5.24 KB
/
package.json
File metadata and controls
152 lines (152 loc) · 5.24 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "blues-stack-template",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:prisma": "prisma generate",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build --bundle --external:fsevents",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"dev": "remix dev -c 'node --inspect --require ./node_modules/dotenv/config --require ./mocks ./build/server.js'",
"docker": "docker compose up -d",
"format": "prettier --write .",
"generate:css": "postcss styles/**/*.css --base styles --dir app/styles",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server.js",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc && tsc -p cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"components": "npx shadcn-ui"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/postgres-data"
],
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@isaacs/express-prometheus-middleware": "^1.2.1",
"@prisma/client": "^4.16.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/css-bundle": "*",
"@remix-run/express": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@tanstack/react-table": "^8.10.7",
"@turf/helpers": "^6.5.0",
"@vercel/postgres": "^0.5.1",
"add": "^2.0.6",
"bcryptjs": "^2.4.3",
"chokidar": "^3.5.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"csvtojson": "^2.0.10",
"express": "^4.18.2",
"framer-motion": "^10.16.14",
"geojson": "^0.5.0",
"isbot": "^3.7.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.291.0",
"mapbox-gl": "^2.15.0",
"maplibre-gl": "^3.5.2",
"morgan": "^1.10.0",
"prom-client": "^15.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-hook-form": "^7.48.2",
"react-map-gl": "^7.1.6",
"remix-typedjson": "^0.4.1",
"select": "^1.1.2",
"shadcn-ui": "^0.4.1",
"source-map-support": "^0.5.21",
"supercluster": "^8.0.1",
"table": "^6.8.1",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.1",
"use-supercluster": "^1.1.0",
"victory": "^36.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@remix-run/dev": "*",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@types/bcryptjs": "^2.4.5",
"@types/compression": "^1.7.4",
"@types/eslint": "^8.44.6",
"@types/express": "^4.17.20",
"@types/lodash.debounce": "^4.0.9",
"@types/morgan": "^1.9.7",
"@types/node": "^18.18.6",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/source-map-support": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"cookie": "^0.5.0",
"cypress": "^13.3.2",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.0",
"happy-dom": "^12.9.1",
"msw": "^1.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^4.16.2",
"start-server-and-test": "^2.0.1",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"seed": "ts-node -r tsconfig-paths/register prisma/seed.ts"
}
}