-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 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
{
"name": "todos",
"version": "0.1.0",
"license": "CC BY-NC-ND",
"private": true,
"scripts": {
"prebuild": "npx pnpm db:migrate",
"build": "next build",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "tsx --conditions=react-server src/datastore/migrate.ts",
"db:seed": "tsx --conditions=react-server src/datastore/seed.ts",
"dev": "pnpm run db:seed; next dev --turbo",
"dev:local": "ENVIRONMENT=local pnpm run db:seed; ENVIRONMENT=local next dev --turbo",
"dependency-cruiser": "npx depcruise src --include-only '^src' --output-type dot | dot -T svg > dependency-graph.svg",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "next start",
"test": "pnpm run test:unit",
"test:browser": "ENVIRONMENT=local PORT=4000 npx --node-options='--conditions=react-server' playwright test",
"test:browser:ui": "ENVIRONMENT=local PORT=4000 npx --node-options='--conditions=react-server' playwright test --ui",
"test:integration": "vitest --config ./test/integration/vitest.config.ts run",
"test:unit:watch": "vitest --config ./test/unit/vitest.config.ts watch",
"test:unit": "vitest --config ./test/unit/vitest.config.ts run",
"typescript:check": "npx tsc --noEmit",
"prepare": "husky"
},
"type": "module",
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@reyhappen/react-easy-sort": "^1.7.5",
"@t3-oss/env-nextjs": "^0.12.0",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@vercel/toolbar": "^0.1.32",
"array-move": "^4.0.0",
"bcryptjs": "^3.0.2",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.4",
"drizzle-orm": "^0.39.3",
"jose": "^6.0.4",
"lucide-react": "^0.475.0",
"luxon": "^3.5.0",
"next": "15.1.7",
"postgres": "^3.4.5",
"ramda": "^0.30.1",
"react": "19.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "19.0.0",
"server-only": "^0.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.6.2",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@faker-js/faker": "^9.5.0",
"@playwright/test": "^1.50.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.9.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22",
"@types/ramda": "^0.30.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react": "^4.3.4",
"core-js": "^3.40.0",
"dependency-cruiser": "^16.10.0",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.4",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-hexagonal-architecture": "^1.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vitest": "^0.5.4",
"exponential-backoff": "^3.1.2",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"node-json-db": "^2.3.1",
"playwright": "^1.50.1",
"postcss": "^8",
"prettier": "^3.5.2",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.3",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6",
"vitest-mock-extended": "^3.0.1",
"vitest-webgl-canvas-mock": "^1.1.0"
}
}