-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "stack-api-utilities",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "next dev -H 127.0.0.1",
"build": "next build",
"preview": "next start -H 127.0.0.1",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"e2e": "playwright test",
"lint": "tsc -p tsconfig.json --noEmit --pretty false && tsc -p tsconfig.node.json --noEmit --pretty false"
},
"dependencies": {
"@stackoverflow/stacks": "^2.5.1",
"@tanstack/react-table": "^8.20.5",
"d3-chord": "^3.0.1",
"d3-shape": "^3.2.0",
"next": "^14.2.30",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/d3-chord": "^3.0.6",
"@types/d3-shape": "^3.1.6",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jsdom": "^24.1.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}