-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 5.19 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 5.19 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
153
154
155
156
157
158
159
160
161
162
163
{
"name": "epic-stack-template",
"private": true,
"sideEffects": false,
"license": "MIT",
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"type": "module",
"imports": {
"#app/*": "./app/*",
"#tests/*": "./tests/*"
},
"scripts": {
"build": "react-router build",
"dev": "cross-env NODE_ENV=development MOCKS=true node index.ts",
"dev:no-mocks": "cross-env NODE_ENV=development node index.ts",
"format": "prettier --write .",
"lint": "eslint .",
"setup": "npm run build && prisma migrate deploy && prisma generate --sql && playwright install",
"start": "cross-env NODE_ENV=production node index.ts",
"start:mocks": "cross-env NODE_ENV=production MOCKS=true node index.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "npm run test:e2e:dev --silent",
"test:e2e:dev": "playwright test --ui",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "npx playwright install --with-deps chromium",
"typecheck": "react-router typegen && tsc",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report"
],
"dependencies": {
"@conform-to/react": "^1.16.0",
"@conform-to/zod": "^1.16.0",
"@epic-web/cachified": "^5.6.1",
"@epic-web/client-hints": "^1.3.8",
"@epic-web/invariant": "^1.0.0",
"@epic-web/remember": "^1.1.0",
"@epic-web/totp": "^4.0.1",
"@mjackson/form-data-parser": "^0.9.1",
"@mjackson/headers": "^0.11.1",
"@nasa-gcn/remix-seo": "^2.0.1",
"@nichtsam/helmet": "^0.3.1",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@paralleldrive/cuid2": "^3.3.0",
"@prisma/client": "^6.19.2",
"@prisma/instrumentation": "^6.19.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.6",
"@react-router/express": "^7.13.0",
"@react-router/node": "^7.13.0",
"@remix-run/server-runtime": "^2.17.4",
"@sentry/profiling-node": "^10.38.0",
"@sentry/react-router": "^10.38.0",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.2",
"@tailwindcss/vite": "^4.1.18",
"@tusbar/cache-control": "^2.0.0",
"address": "^2.0.3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"close-with-grace": "^2.4.0",
"clsx": "^2.1.1",
"compression": "^1.8.1",
"cookie": "^1.1.1",
"cross-env": "^10.1.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"execa": "^9.6.1",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"get-port": "^7.1.0",
"glob": "^13.0.0",
"input-otp": "^1.4.2",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^5.1.34",
"litefs-js": "^2.0.2",
"lru-cache": "^11.2.5",
"mime-types": "^3.0.2",
"morgan": "^1.10.1",
"openimg": "^1.1.0",
"prisma": "^6.19.2",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.0",
"remix-auth": "^4.2.0",
"remix-auth-github": "^3.0.2",
"remix-utils": "^9.0.1",
"set-cookie-parser": "^3.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"source-map-support": "^0.5.21",
"spin-delay": "^2.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"vite-env-only": "^3.0.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@epic-web/config": "^1.21.3",
"@faker-js/faker": "^10.2.0",
"@playwright/test": "^1.58.1",
"@react-router/dev": "^7.13.0",
"@sly-cli/sly": "^2.1.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/compression": "^1.8.1",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^9.0.0",
"@types/mime-types": "^3.0.1",
"@types/morgan": "^1.9.10",
"@types/node": "^25.1.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/set-cookie-parser": "^2.4.10",
"@types/source-map-support": "^0.5.10",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"enforce-unique": "^1.3.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"fs-extra": "^11.3.3",
"jsdom": "^27.4.0",
"msw": "^2.12.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-plugin-sql": "^0.19.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"react-router-auto-routes": "^0.7.1",
"react-router-devtools": "^6.2.0",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-icons-spritesheet": "^3.0.1",
"vitest": "^4.0.18"
},
"engines": {
"node": "^22.18.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"prettier": "@epic-web/config/prettier"
}