=test_update_homework_tests_and_work_log
Some checks failed
CI / build-deploy (push) Has been cancelled

This commit is contained in:
SpecialX
2026-03-19 13:16:49 +08:00
parent eb08c0ab68
commit 99f116cb64
70 changed files with 7470 additions and 20220 deletions

View File

@@ -8,6 +8,14 @@
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "npm run test:integration && npm run test:e2e",
"test:ci": "npm run test:integration && npm run test:e2e",
"test:integration": "vitest run --config vitest.config.ts",
"test:integration:watch": "vitest --config vitest.config.ts",
"test:integration:coverage": "vitest run --config vitest.config.ts --coverage",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test tests/e2e/smoke-auth.spec.ts",
"test:e2e:full-routes": "playwright test tests/e2e/full-route-regression.spec.ts",
"db:seed": "npx tsx scripts/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
@@ -41,9 +49,9 @@
"@tiptap/pm": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.562.0",
"mysql2": "^3.16.0",
@@ -51,6 +59,8 @@
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"nuqs": "^2.8.5",
"openai": "^6.25.0",
"p-queue": "^9.1.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-hook-form": "^7.69.0",
@@ -67,12 +77,14 @@
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
@@ -80,6 +92,7 @@
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4",
"typescript": "^5"
"typescript": "^5",
"vitest": "^4.1.0"
}
}