forked from epicweb-dev/epic-stack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 4.29 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
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
{
"name": "epic-stack-template",
"private": true,
"sideEffects": false,
"license": "MIT",
"epic-stack": true,
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"type": "module",
"scripts": {
"postinstall": "patch-package --patch-dir ./other/patches",
"build": "run-s build:*",
"build:remix": "remix build --sourcemap",
"build:server": "tsx ./other/build-server.ts",
"dev": "remix dev -c \"node ./server/dev-server.js\" --no-restart",
"prisma:studio": "prisma studio",
"format": "prettier --write .",
"lint": "eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed && playwright install",
"start": "cross-env NODE_ENV=production node .",
"start:mocks": "cross-env NODE_ENV=production MOCKS=true tsx .",
"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": "tsc",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
],
"dependencies": {
"@conform-to/react": "^0.7.0",
"@conform-to/zod": "^0.7.0",
"@prisma/client": "^4.16.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@react-email/components": "^0.0.7",
"@remix-run/css-bundle": "^1.18.0",
"@remix-run/express": "^1.18.0",
"@remix-run/node": "^1.18.0",
"@remix-run/react": "^1.18.0",
"@remix-run/router": "^1.6.3",
"@remix-run/server-runtime": "^1.18.0",
"@sentry/remix": "^7.54.0",
"address": "^1.2.2",
"autoprefixer": "^10.4.14",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^8.4.0",
"cachified": "^3.5.4",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"close-with-grace": "^1.2.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"eslint-plugin-remix-react-routes": "^1.0.5",
"execa": "^7.1.1",
"express": "^4.18.2",
"get-port": "^7.0.0",
"helmet": "^7.0.0",
"isbot": "^3.6.10",
"litefs-js": "^1.1.2",
"lru-cache": "^9.1.2",
"morgan": "^1.10.0",
"prisma": "^4.16.0",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"remix-utils": "^6.4.1",
"tailwind-merge": "^1.13.1",
"tailwindcss": "^3.3.2",
"tailwindcss-radix": "^2.8.0",
"thirty-two": "^1.0.2",
"tiny-invariant": "^1.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@playwright/test": "^1.35.0",
"@remix-run/dev": "^1.18.0",
"@remix-run/eslint-config": "^1.18.0",
"@remix-run/serve": "^1.18.0",
"@testing-library/jest-dom": "^5.16.5",
"@total-typescript/ts-reset": "^0.4.2",
"@types/bcryptjs": "^2.4.2",
"@types/better-sqlite3": "^7.6.4",
"@types/compression": "^1.7.2",
"@types/cookie": "^0.5.1",
"@types/eslint": "^8.40.2",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.1",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/testing-library__jest-dom": "^5.14.6",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^0.32.0",
"cookie": "^0.5.0",
"enforce-unique": "^1.1.0",
"esbuild": "^0.17.19",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"glob": "^10.2.7",
"jsdom": "^22.1.0",
"msw": "^1.2.2",
"npm-run-all": "^4.1.5",
"patch-package": "^7.0.0",
"prettier": "^2.8.8",
"prettier-plugin-sql": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"remix-flat-routes": "^0.5.8",
"tsconfig-paths": "^4.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0"
},
"engines": {
"node": "18"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}