-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "trcc",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:db": "vitest run tests/lib/database",
"test:watch": "vitest watch",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"check": "npm run format:check && npm run lint && npm run typecheck",
"fix": "npm run format && npm run lint:fix",
"supabase:setup": "bash scripts/supabase-setup.sh",
"supabase:status": "npx supabase status",
"supabase:db:reset": "npx supabase db reset",
"supabase:migration:up": "npx supabase migration up"
},
"dependencies": {
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.80.0",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-table": "^8.21.3",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"lucide-react": "^0.564.0",
"next": "^15.5.9",
"papaparse": "^5.5.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.24",
"eslint": "^9",
"eslint-config-next": "15.5.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"supabase": "^2.70.5",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5",
"vitest": "^4.0.8"
}
}