This repository was archived by the owner on Nov 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.52 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.52 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "procircularitool",
"version": "1.0.0",
"description": "ProCirculariTool – browser-based PCI assessment and exploration.",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"test": "vitest run --config config/vite.config.ts",
"test:watch": "vitest --config config/vite.config.ts",
"test:coverage": "vitest run --coverage --config config/vite.config.ts",
"e2e": "playwright test --config config/playwright.config.ts",
"e2e:headed": "playwright test --headed --config config/playwright.config.ts",
"check": "npm run lint && npm run test && npm run build",
"typecheck": "tsc --noEmit",
"docs:serve": "mkdocs serve -f mkdocs.yml",
"docs:build": "mkdocs build -f mkdocs.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malteschaefer1/procircularitool.git"
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/malteschaefer1/procircularitool/issues"
},
"homepage": "https://github.com/malteschaefer1/procircularitool#readme",
"dependencies": {
"@emotion/react": "^11.14.0",
"@mantine/core": "^8.3.8",
"@mantine/form": "^8.3.8",
"@mantine/hooks": "^8.3.8",
"@mantine/notifications": "^8.3.8",
"@tabler/icons-react": "^3.35.0",
"exceljs": "^4.4.0",
"html2canvas": "^1.4.1",
"i18next": "^25.6.3",
"jspdf": "^3.0.4",
"nanoid": "^5.1.6",
"papaparse": "^5.5.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.3.5",
"recharts": "^3.4.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/papaparse": "^5.5.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.12",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.0.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.12"
}
}