forked from danwhite-osucascades/cs464
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 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
{
"name": "cs464",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:server": "next dev",
"dev": "npm run db:start && tsx scripts/dev-local.ts dev:server",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "npm run typecheck && npm run lint && npm run test && npx playwright test",
"typecheck": "tsc --noEmit",
"sb": "supabase",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:restart": "supabase stop && supabase start",
"db:migrate": "supabase migration up",
"db:status": "supabase status",
"db:seed:do": "tsx scripts/seed-database.ts",
"db:seed": "tsx scripts/dev-local.ts db:seed:do",
"db:rseed": "supabase db reset && npm run db:seed",
"db:seed:remote": "dotenv -e .env.remote -- tsx scripts/seed-database.ts",
"db:setup": "npm run db:start && npm run db:seed && npm run db:status"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.0",
"@mui/material": "^9.0.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.103.0",
"motion": "^12.37.0",
"next": "^16.2.3",
"playwright": "^1.60.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"supabase": "^2.89.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.6",
"dotenv-cli": "^11.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"jsdom": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5",
"vitest": "^4.1.6"
}
}