-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.84 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"productName": "OpenHome",
"name": "openhome",
"version": "1.0.1",
"description": "A tool for moving Pokémon between game saves",
"keywords": [
"pokemon",
"home",
"openhome"
],
"homepage": "https://github.com/andrewbenington/OpenHome#readme",
"bugs": {
"url": "https://github.com/andrewbenington/OpenHome/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewbenington/OpenHome.git"
},
"license": "GPL-3.0-only",
"author": {
"name": "Andrew Benington",
"email": "[email protected]"
},
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint src --report-unused-disable-directives -c eslint.config.mjs --fix",
"lint:ci": "eslint src --report-unused-disable-directives -c eslint.config.mjs",
"typecheck": "tsc",
"start": "./buildVersionJSON.sh && tauri preview",
"dev:unix": "./buildVersionJSON.sh && tauri dev",
"dev:win": "powershell -ExecutionPolicy Bypass -File ./buildVersionJSON.ps1 && tauri dev",
"build": "tsc && vite build",
"dev": "vite",
"tauri": "tauri",
"test": "jest",
"precommit": "prettier --write . && eslint src --report-unused-disable-directives -c eslint.config.mjs --fix"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/joy": "^5.0.0-beta.48",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"buffer": "^6.0.3",
"chart.js": "^4.4.7",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"fp-ts": "^2.16.9",
"hexy": "^0.3.5",
"lodash": "^4.17.21",
"pokemon-files": "^0.3.7",
"pokemon-resources": "^1.0.11",
"pokemon-species-data": "^0.4.2",
"prando": "^6.0.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-data-grid": "^7.0.0-beta.44",
"react-error-boundary": "^4.1.2",
"react-icons": "^5.4.0",
"react-json-tree": "^0.19.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@tauri-apps/cli": "^2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.199",
"@types/node": "^22.10.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"react-dom": "^18.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}