-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.71 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.71 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
{
"name": "house-stack-template",
"private": true,
"sideEffects": false,
"license": "MIT",
"author": "drewjs (https://github.com/drewjs)",
"type": "module",
"scripts": {
"build": "remix vite:build",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:seed": "pnpm dlx tsx ./app/db/seed.ts",
"db:studio": "drizzle-kit studio",
"dev": "remix vite:dev",
"dev:mocks": "cross-env MOCKS=true remix vite:dev",
"fix": "biome check --write --unsafe .",
"lint": "biome check .",
"setup": "pnpm db:seed",
"start": "remix-serve ./build/server/index.js",
"start:mocks": "cross-env MOCKS=true remix-serve ./build/server/index.js",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:dev": "playwright test --ui",
"test:e2e:install": "pnpm dlx playwright install --with-deps chromium",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc"
},
"dependencies": {
"@libsql/client": "^0.7.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@remix-run/css-bundle": "^2.10.0",
"@remix-run/node": "^2.10.0",
"@remix-run/react": "^2.10.0",
"@remix-run/serve": "^2.10.0",
"@sentry/remix": "^8.13.0",
"@sentry/vite-plugin": "^2.20.1",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.1.2",
"binode": "^1.0.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"isbot": "^5.1.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@faker-js/faker": "^8.4.1",
"@flydotio/dockerfile": "^0.5.7",
"@playwright/test": "^1.45.1",
"@remix-run/dev": "^2.10.0",
"@testing-library/jest-dom": "^6.4.6",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.8",
"happy-dom": "^14.12.3",
"msw": "^2.3.1",
"postcss": "^8.4.39",
"start-server-and-test": "^2.0.4",
"tailwindcss": "^3.4.4",
"typescript": "~5.5.3",
"vite": "^5.3.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"engines": {
"node": "20",
"pnpm": "9"
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf"
}