-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.74 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
{
"name": "react-deluge",
"productName": "react-deluge",
"version": "1.0.0",
"homepage": "./",
"main": "main.js",
"private": true,
"scripts": {
"prod": "webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./builds --overwrite",
"lint": "eslint --fix 'src/**/*.{js,jsx}'",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"npx prettier --write",
"eslint --fix-dry-run",
"jest --bail --findRelatedTests"
]
},
"jest": {
"modulePathIgnorePatterns": [
"builds"
],
"verbose": true
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@reduxjs/toolkit": "^1.4.0",
"antd": "^4.6.6",
"axios": "^0.20.0",
"bytes": "^3.1.0",
"d3": "^6.2.0",
"deluge-rpc-socket": "file:node-deluge-rpc",
"electron-is-dev": "^1.2.0",
"formik": "^2.1.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-container-dimensions": "^1.4.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-table": "^7.5.1",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@redux-saga/testing-utils": "^1.1.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.0",
"babel-loader": "^8.1.0",
"babel-plugin-rewire": "^1.2.0",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^4.3.0",
"electron": "^10.1.3",
"electron-devtools-installer": "^3.1.1",
"electron-packager": "^15.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"jest-cli": "^26.5.0",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.3",
"prettier": "^2.1.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}