-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 KB
/
package.json
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
{
"name": "vlizard",
"author": "Jiri Zbytovsky",
"description": "VLizard, a VLE wizard.",
"private": true,
"version": "2024.1.0",
"engines": {
"npm": ">=10.0.0",
"node": ">=22.0.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"tsc": "tsc",
"build:vite": "vite build",
"build:electron": "electron-builder",
"prettier": "prettier --write \"src/**/*.{js,ts,mjs,cjs,jsx,tsx}\"",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --fix --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@tanstack/react-query": "^5.62.2",
"axios": "^1.7.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.0.2",
"react-spreadsheet": "^0.9.5",
"scheduler": "^0.23.2"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"tree-kill": "^1.2.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.6",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^2.1.8"
},
"main": "dist-electron/main.js"
}