-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.64 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
{
"name": "boardroom-next",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "bash scripts/dev.sh",
"build": "next build",
"start": "next start",
"local:start": "bash scripts/local_start.sh",
"local:start:demo": "bash scripts/local_start.sh --demo",
"local:start:fresh": "bash scripts/local_start.sh --fresh",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "tsc --noEmit",
"precommit": "npm run lint && npm run typecheck",
"pre-commit": "npm run precommit",
"prepare": "git config core.hooksPath .githooks",
"security:audit": "node --import tsx src/security/cli.ts audit",
"security:doctor": "node --import tsx src/security/cli.ts doctor",
"db:seed": "tsx scripts/seed_postgres.ts",
"db:reset": "tsx scripts/seed_postgres.ts --reset --truncate-only"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"dotenv": "^17.3.1",
"next": "^15.1.0",
"openai": "^4.77.3",
"pg": "^8.18.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"three": "^0.183.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.10.2",
"@types/pg": "^8.16.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}