-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 898 Bytes
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
{
"name": "strength-stack",
"version": "0.1.0",
"private": true,
"description": "Drag materials onto a shared strength-per-weight chart and watch it redraw live.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --ext .ts",
"format": "prettier --write ."
},
"dependencies": {
"d3": "^7.9.0"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^8.57.0",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"typescript": "^5.6.3",
"vite": "^5.4.21",
"vitest": "^4.1.10"
}
}