generated from jooy2/retron
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "retron",
"version": "1.0.0",
"description": "ViteJS + Electron + React + Material-UI Template",
"homepage": "https://github.com/jooy2/retron",
"author": "jooy2 <[email protected]>",
"license": "MIT",
"main": "dist/main/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/jooy2/retron.git"
},
"bugs": {
"url": "https://github.com/jooy2/retron/issues"
},
"scripts": {
"dev": "vite",
"dev:debug": "vite -d",
"dev:debug:force": "vite -d --force",
"build": "npm run build:pre && electron-builder -wml",
"build:pre": "tsc && vite build",
"build:dir": "npm run build:pre && electron-builder --dir",
"build:win": "npm run build:pre && electron-builder --windows",
"build:mac": "npm run build:pre && electron-builder --mac",
"build:linux": "npm run build:pre && electron-builder --linux",
"lint": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter src",
"lint:fix": "eslint --ext .js,.ts,.vue -f ./node_modules/eslint-friendly-formatter --fix src",
"format": "prettier .",
"format:fix": "prettier . --write",
"test": "npm run build:dir && xvfb-maybe -- playwright test"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react-swc": "^3.4.0",
"electron": "^26.2.2",
"electron-builder": "^24.6.4",
"electron-extension-installer": "^1.2.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"playwright": "^1.38.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.14.1",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-eslint": "^1.8.1",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.11",
"@reduxjs/toolkit": "^1.9.6",
"get-port": "^7.0.0",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-redux": "^8.1.2",
"react-router-dom": "^6.16.0"
},
"eslintConfig": {
"extends": "react-app"
}
}