-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
{
"name": "scoreboard",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": "18"
},
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"test": "vitest",
"pw:open": "playwright test --ui",
"pw:run": "playwright test",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc --skipLibCheck",
"db:migrate": "drizzle-kit generate:pg --schema=./app/database/schema.ts",
"db:push": "bun run app/database/migrate.ts",
"db:studio": "drizzle-kit studio --config ./drizzle.config.ts"
},
"dependencies": {
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@neondatabase/serverless": "^0.9.3",
"@nextui-org/react": "^2.4.0",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"drizzle-orm": "^0.30.10",
"framer-motion": "^11.2.9",
"hashids": "^2.3.0",
"isbot": "^5.1.8",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-otp-input": "^3.1.1",
"react-toastify": "^10.0.5",
"remix-auth": "^3.6.0",
"remix-utils": "^7.6.0",
"stytch": "^10.16.0",
"use-debounce": "^10.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@google-cloud/local-auth": "^3.0.1",
"@playwright-testing-library/test": "^4.5.0",
"@playwright/test": "^1.44.1",
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^18.19.33",
"@types/promise-retry": "^1.1.6",
"@types/react": "18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.21.4",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prefer-let": "^3.0.1",
"googleapis": "^137.1.0",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"promise-retry": "^2.0.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.ts"
]
}
}