-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 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
{
"name": "business-logic-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"axios": "^1.11.0",
"blockly": "^12.3.0",
"dayjs": "^1.11.15",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.0",
"mobx-state-tree": "^6.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.8.2",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5"
},
"vitest": {
"setupFiles": [
"src/test/setup.ts"
],
"environment": "jsdom"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^5.0.0",
"abortcontroller-polyfill": "^1.7.8",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vitest": "^3.2.4",
"whatwg-fetch": "^3.6.20"
}
}