-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.72 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
{
"name": "argentum-online",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npx cap copy @capacitor-community/electron && npx cap sync",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "npx prettier --write .",
"check-format": "npx prettier --check .",
"preview": "vite preview",
"android": "npx cap run android",
"ios": "npx cap run ios",
"desktop": "npx cap open @capacitor-community/electron"
},
"dependencies": {
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^5.6.0",
"@capacitor/cli": "^5.6.0",
"@capacitor/core": "^5.6.0",
"@capacitor/ios": "^5.6.0",
"@pixi/react": "^7.1.1",
"@pixi/unsafe-eval": "^7.3.2",
"@reduxjs/toolkit": "^2.0.1",
"pixi.js": "^7.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
}
}