-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.62 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
56
57
58
59
60
61
62
{
"name": "burnchart",
"version": "5.0.0",
"repository": {
"type": "git",
"url": "https://github.com/radekstepan/burnchart.git"
},
"license": "AGPL-3.0",
"browserslist": "> 0.5%, last 2 versions, not dead",
"type": "module",
"bin": "./cli.js",
"scripts": {
"start": "vite dev",
"start:preview": "./cli.js --port 1234",
"test": "vitest --run",
"test:dev": "vitest dev",
"ci:test": "vitest --run --coverage",
"prepublishOnly": "npm run build",
"build": "vite build"
},
"dependencies": {
"chart.js": "^4.5.1",
"chartjs-adapter-dayjs": "^1.0.0",
"dayjs": "^1.11.19",
"p-queue": "^9.1.0",
"react": "19.2.4",
"react-content-loader": "^7.1.2",
"react-dom": "^19.2.4",
"react-use": "^17.6.0",
"regression": "^2.0.1",
"semver": "^7.7.4",
"serialize-error": "^13.0.1",
"sirv": "^3.0.0",
"sort-on": "^7.0.0",
"url-pattern": "^1.0.3",
"wouter": "^3.9.0"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.1",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/regression": "^2.0.6",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"happy-dom": "^20.5.0",
"less": "^4.5.1",
"meow": "^14.0.0",
"mockdate": "^3.0.5",
"normalize.css": "^8.0.1",
"prettier": "^3.8.1",
"pretty-quick": "^4.2.2",
"process": "^0.11.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}