-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 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
{
"name": "forecasterarena",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check:architecture": "node scripts/check-architecture.mjs",
"check:queries": "node scripts/check-query-structure.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --maxWorkers=1 --testTimeout=15000",
"test:e2e": "env -u FORCE_COLOR NODE_DISABLE_COLORS=1 playwright test",
"test:e2e:empty": "env -u FORCE_COLOR NODE_DISABLE_COLORS=1 E2E_SEED_SCENARIO=empty playwright test playwright/empty-state.spec.ts",
"typecheck": "tsc --noEmit",
"check": "npm run test:coverage && npm run lint && npm run check:architecture && npm run check:queries && npm run build && npm run typecheck"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"geist": "^1.7.0",
"next": "^14.2.35",
"react": "^18",
"react-dom": "^18",
"recharts": "^3.5.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8",
"eslint-config-next": "^14.2.35",
"playwright": "^1.58.2",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.0.18"
}
}