-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.3 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": "i18n-gui",
"version": "0.0.8",
"description": "Editor of i18n files",
"author": "Denys Lytviak",
"license": "MIT",
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "node scripts/build.mjs && electron-builder",
"publish": "node scripts/build.mjs && env-cmd electron-builder -p always",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .jsx --ext .js --fix ./src",
"prepare": "husky install"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"baseui": "^10.8.0",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.1",
"langmap": "^0.0.16",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-spring": "^9.4.2",
"react-virtualized-auto-sizer": "^1.0.6",
"react-vtree": "^3.0.0-beta.3",
"react-window": "^1.8.6",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.2",
"uuid": "^8.3.2",
"xss": "^1.0.10"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@originjs/vite-plugin-commonjs": "^1.0.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@vitejs/plugin-react": "^1.0.7",
"babel-jest": "^27.4.6",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-devtools-installer": "^3.2.0",
"env-cmd": "^10.1.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"vite": "^2.6.13",
"vite-plugin-resolve": "^1.4.0"
},
"env": {
"//": "Used in build scripts",
"HOST": "127.0.0.1",
"PORT": 3344
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,css,md}": "prettier --write"
}
}