-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.18 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
{
"name": "model-checker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 8000 --host --force",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"format:fix": "prettier --write src/",
"format": "prettier --check src/",
"lint": "eslint src --ext ts,tsx ",
"lint:fix": "eslint --fix src/**/*.{tsx,ts}",
"tsc": "tsc --noEmit",
"check": "npm run format && npm run lint && npm run tsc",
"fix": "npm run format:fix && npm run lint:fix"
},
"dependencies": {
"@fontsource/poppins": "^5.0.14",
"@mantine/charts": "^7.14.3",
"@mantine/core": "^7.14.3",
"@mantine/dropzone": "^7.14.3",
"@mantine/hooks": "^7.14.3",
"@mantine/modals": "^7.14.3",
"@mantine/notifications": "^7.14.3",
"@tabler/icons-react": "^3.24.0",
"comlink": "^4.4.1",
"i18next": "^23.11.4",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.2",
"mustache": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"react-router-dom": "^6.23.0",
"react-to-print": "^2.15.1",
"recharts": "^2.12.7",
"web-ifc": "^0.0.51",
"web-ifc-three": "^0.0.125"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/mustache": "^4.2.5",
"@types/node": "^20.12.11",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"happy-dom": "^14.10.1",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}