-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.91 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
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
{
"name": "evolution-project",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.19.0"
},
"packageManager": "npm@10.9.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"build:wasm": "wat2wasm src-wasm/scripts/physics-scripts.wat -o public/physics.wasm",
"build:engine": "node scripts/build-training-engine.mjs",
"test:unit": "vitest run tests/unit tests/engine tests/wasm",
"test:component": "vitest run tests/component",
"test:integration": "node scripts/run-with-test-database.mjs vitest run --config vitest.integration.config.mts --no-file-parallelism",
"test:engine": "cargo test --manifest-path src-wasm/training-engine/Cargo.toml",
"test:wasm": "vitest run tests/wasm",
"test:e2e": "node scripts/run-with-test-database.mjs playwright test --project=chromium",
"test:e2e:ui": "node scripts/run-with-test-database.mjs playwright test --project=chromium --ui",
"test:coverage": "vitest run tests/unit tests/engine tests/component tests/wasm --coverage",
"test:quality": "vitest run tests/quality",
"test:quality:statistical": "node scripts/run-statistical-quality.mjs",
"test:benchmark": "run-s build test:quality benchmark:run",
"benchmark:run": "node scripts/run-with-test-database.mjs playwright test --config=playwright.benchmark.config.ts",
"verify:fast": "run-s lint typecheck test:unit test:component test:engine",
"verify": "run-s verify:fast build test:integration test:e2e",
"db:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:up": "docker compose -f compose.dev.yml up -d",
"db:down": "docker compose -f compose.dev.yml down",
"db:restart": "docker compose -f compose.dev.yml restart db",
"db:logs": "docker compose -f compose.dev.yml logs -f db",
"db:status": "docker compose -f compose.dev.yml ps",
"db:shell": "docker compose -f compose.dev.yml exec db mariadb -uapp -papp app",
"db:reset": "docker compose -f compose.dev.yml down -v && docker compose -f compose.dev.yml up -d",
"setup": "run-s db:generate build:engine",
"start": "next start"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.3",
"@base-ui/react": "^1.2.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-mariadb": "^7.10.0",
"@prisma/client": "^7.10.0",
"@toolwind/corner-shape": "^0.0.8-3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.576.0",
"mariadb": "^3.5.3",
"next": "^16.3.4",
"next-auth": "^5.0.0-beta.32",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.8",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.8",
"react-hook-form": "^7.71.2",
"react-resizable-panels": "^4.7.0",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.4",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"msw": "^2.15.0",
"npm-run-all2": "^8.0.4",
"prisma": "^7.10.0",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"testcontainers": "^12.0.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.11",
"wabt": "^1.0.39"
}
}