-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
151 lines (151 loc) · 4.53 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "rocketredis",
"version": "1.0.0",
"description": "A beautiful Redis GUI.",
"keywords": [],
"license": "MIT",
"author": "Diego Fernandes <[email protected]>",
"main": "./dist/main.js",
"scripts": {
"build": "rimraf dist && npm-run-all -p build:*",
"build:electron": "cross-env NODE_ENV=production webpack --config webpack/electron.webpack.js",
"build:react": "cross-env NODE_ENV=production webpack --config webpack/react.webpack.js",
"dev": "npm-run-all -p dev:react electron:serve",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.webpack.js && electron .",
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack/react.webpack.js",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --ext .tsx,.ts,.js src/ electron/",
"package": "yarn build && electron-builder build --publish never",
"test": "jest --passWithNoTests",
"tsc": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "7.10.5",
"@unform/core": "2.1.3",
"@unform/web": "2.1.3",
"electron-store": "5.2.0",
"electron-updater": "4.3.4",
"i18next": "19.6.3",
"i18next-electron-language-detector": "0.0.10",
"i18next-fs-backend": "1.0.7",
"ioredis": "4.17.3",
"npm-run-all": "4.1.5",
"polished": "3.6.5",
"react": "16.13.1",
"react-contextmenu": "2.14.0",
"react-dom": "16.13.1",
"react-i18next": "11.7.0",
"react-icons": "3.10.0",
"react-modal": "3.11.2",
"react-resizable": "1.10.1",
"react-spring": "8.0.27",
"react-use": "15.3.3",
"react-virtual": "2.2.1",
"recoil": "0.0.10",
"styled-components": "5.1.1",
"uuidv4": "6.2.0",
"wait-on": "5.2.1",
"yup": "0.29.2"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-transform-runtime": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@commitlint/core": "9.1.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.1",
"@testing-library/react": "10.4.9",
"@types/ioredis": "4.17.2",
"@types/jest": "26.0.7",
"@types/node": "12.19.12",
"@types/react": "16.9.41",
"@types/react-dom": "16.9.8",
"@types/react-modal": "3.10.6",
"@types/react-resizable": "1.7.2",
"@types/styled-components": "5.1.1",
"@types/yup": "0.29.3",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-loader": "8.1.0",
"commitizen": "4.1.2",
"cross-env": "7.0.2",
"cz-conventional-changelog": "3.2.0",
"electron": "11.1.0",
"electron-builder": "22.8.0",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-plugin-standard": "4.0.1",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"jest": "26.1.0",
"json-schema-typed": "7.0.3",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"react-refresh": "0.8.3",
"rimraf": "3.0.2",
"sort-package-json": "1.44.0",
"ts-jest": "26.4.4",
"typescript": "3.9.7",
"webpack": "4.44.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"build": {
"appId": "com.diego3g.rocketredis",
"productName": "Rocket Redis",
"files": [
"dist/"
],
"win": {
"target": [
"portable"
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
},
"directories": {
"buildResources": "build",
"output": "release"
}
}
}