-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.73 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
{
"name": "vector",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "Vector — the merit layer for autonomous capital on Mantle. P0.1 app skeleton & seeded config.",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "bun run test:unit && bun run test:fuzz && bun run test:integration && bun run test:e2e",
"test:unit": "bun test tests/unit",
"test:fuzz": "bun test tests/fuzz",
"test:integration": "bun test tests/integration --timeout 30000",
"test:e2e": "bun test tests/e2e",
"test:e2e:browser": "playwright test",
"test:e2e:live": "bun --conditions=react-server scripts/e2e/arena-live.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:migrate": "bun run scripts/db/migrate.ts",
"db:rollback": "bun run scripts/db/rollback.ts",
"db:seed": "bun run scripts/db/seed.ts",
"db:reset": "bun run scripts/db/reset.ts",
"api:openapi": "bun run scripts/api/openapi.ts"
},
"dependencies": {
"@neondatabase/serverless": "^0.10.4",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"server-only": "^0.0.1",
"swr": "^2.3.0",
"viem": "^2.52.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.60.0",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.6",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"engines": {
"bun": ">=1.3.0"
}
}