-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
118 lines (118 loc) · 3.91 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
{
"name": "poe-live-search-manager",
"productName": "PoE Live Search Manager",
"version": "0.0.0",
"description": "Desktop tool for Path of Exile to make instants offers for listed items without leaving the game",
"main": "./app/main.prod.js",
"scripts": {
"build": "yarn build:main && yarn build:renderer",
"build:main": "webpack --mode production --config ./config/webpack.main.config.js",
"build:renderer": "webpack --mode production --config ./config/webpack.renderer.prod.config.js",
"dev": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.renderer.dev.config.js",
"dev:main": "cross-env NODE_ENV=development electron --no-sandbox --require @babel/register --require @babel/polyfill ./app/main/app.js",
"lint": "eslint app",
"package": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node scripts/build.js",
"package:win": "cross-env NODE_ENV=production yarn build && electron-builder build --win --x64 --publish onTag",
"prettify": "prettier --write app/**/*.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"path of exile",
"poe",
"search",
"trade",
"live",
"electron",
"react"
],
"author": "C-Hive",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/5k-mirrors/poe-live-search-manager/issues"
},
"homepage": "https://github.com/5k-mirrors/poe-live-search-manager",
"engines": {
"node": ">=11.7"
},
"//dependencies": {
"@material-table": "Built on top of MUI tables, supports editing, search, sorting, actions. https://material-ui.com/components/tables/#material-table"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-table/core": "^0.2.20",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.67",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"async-mutex": "^0.1.3",
"bottleneck": "^2.19.2",
"electron-store": "^8.1.0",
"electron-unhandled": "^4.0.1",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^4.2.2",
"react-router-dom": "^5.0.1",
"remark-breaks": "^1.0.3",
"ws": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/register": "^7.12.1",
"@testing-library/react-hooks": "^3.4.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"dotenv": "^16.0.0",
"electron": "^19.0.10",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.2.0",
"enzyme": "^3.10.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"//resolutions": {
"@babel/runtime": "https://github.com/webpack/webpack/issues/11467#issuecomment-708648622"
},
"resolutions": {
"@babel/runtime": "^7.12.1"
},
"jest": {
"setupFiles": [
"<rootDir>/app/renderer/SetupEnzymeTests/SetupEnzymeTests.js"
],
"moduleNameMapper": {
".+\\.(png|jpg|css|svg)$": "identity-obj-proxy"
},
"collectCoverageFrom": [
"app/**/*.js",
"!app/main.prod.js",
"!app/renderer.prod.js"
]
}
}