-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
108 lines (108 loc) · 3.33 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "lindo",
"productName": "Lindo",
"private": true,
"version": "3.0.0-rc.12",
"description": "Play Dofus Touch on Linux/OS X/Window",
"homepage": "https://github.com/prixe/lindo",
"author": "Zenoxs <[email protected]>",
"license": "GPL-3.0",
"main": "dist/main/index.cjs",
"scripts": {
"lint": "tsc --noEmit -p packages/renderer/tsconfig.json && eslint packages",
"dev": "concurrently -K -n watch,i18n \"node scripts/watch.mjs\" \"npx typesafe-i18n\"",
"build": "tsc --noEmit -p packages/renderer/tsconfig.json && node scripts/build.mjs && electron-builder --publish never",
"typesafe-i18n": "typesafe-i18n"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@hfelix/electron-localshortcut": "^4.0.1",
"@octokit/rest": "^19.0.4",
"argon2": "^0.28.7",
"axios": "^0.27.2",
"axios-retry": "^3.2.5",
"compare-versions": "^4.1.3",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"custom-electron-titlebar": "^4.1.0",
"electron-store": "^8.0.1",
"electron-updater": "^5.2.1",
"eventemitter3": "^4.0.7",
"express": "^4.18.1",
"firebase": "^9.9.2",
"fs-extra": "^10.1.0",
"get-port": "^6.1.2",
"js-beautify": "^1.14.3",
"mobx": "^6.6.0",
"mobx-state-tree": "^5.1.5",
"native-keymap": "^3.3.0",
"object-hash": "^3.0.0",
"rxjs": "^7.5.5",
"typesafe-i18n": "^5.5.2",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@dnd-kit/core": "^6.0.3",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.0",
"@dnd-kit/utilities": "^3.2.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.2",
"@mui/material": "5.8.6",
"@mui/x-date-pickers": "^5.0.0-beta.1",
"@types/async": "^3.2.13",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/js-beautify": "^1.13.3",
"@types/marked": "^4.0.3",
"@types/node": "^16.0.0",
"@types/object-hash": "^2.2.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^2.0.0",
"classnames": "^2.3.1",
"concurrently": "^7.2.2",
"doctoc": "^2.2.0",
"electron": "^19.0.1",
"electron-builder": "^23.3.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"execa": "^6.1.0",
"marked": "^4.0.18",
"mobx-react-lite": "^3.4.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.33.1",
"react-hook-form-mui": "^5.1.0",
"react-router-dom": "6",
"sass": "^1.51.0",
"shortcuts": "^1.8.1",
"typed-emitter": "^2.1.0",
"typescript": "^4.6.4",
"vite": "3.0.4",
"vite-plugin-esmodule": "1.2.5",
"vite-plugin-optimizer": "1.4.0",
"vite-plugin-resolve": "2.1.2"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 7777
}
}