-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.61 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
{
"name": "eve-utils",
"version": "2.3.1",
"private": true,
"main": "public/electron.js",
"homepage": ".",
"author": "Guillermo <ggjnez92@gmail.com>",
"description": "EVE online utils",
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.24.0",
"crypto": "^1.0.1",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-image": "^4.0.3",
"react-modal": "^3.14.4",
"react-notifications": "^1.7.3",
"react-redux": "^8.0.0",
"react-scripts": "5.0.0",
"react-select": "^5.2.2",
"react-tabs": "^4.2.0",
"request-promise": "^4.2.6",
"rxjs": "^7.5.1",
"semver": "^7.3.7",
"sqlite3": "^5.0.2",
"web-vitals": "^2.1.3"
},
"devDependencies": {
"babel-register": "^6.26.0",
"concurrently": "^7.0.0",
"electron": "^16.0.6",
"electron-builder": "^22.14.5",
"electron-rebuild": "^3.2.5",
"got": "^11.0.2",
"jsdom": "^19.0.0",
"mongodb": "^4.5.0",
"vorpal": "^1.12.0",
"wait-on": "^6.0.0"
},
"scripts": {
"start": "node_modules/.bin/react-scripts start",
"build": "node_modules/.bin/react-scripts build",
"test": "node_modules/.bin/react-scripts test",
"eject": "node_modules/.bin/react-scripts eject",
"dev": "concurrently -k \"BROWSER=none npm start\" \"npm:electron\"",
"electron": "wait-on tcp:${PORT:=3000} && electron .",
"server": "node server.js",
"dist": "npm run build && electron-builder --linux --win",
"dist:linux": "npm run build && electron-builder --linux",
"dist:win": "npm run build && electron-builder --win"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.guilledev.eveutils",
"productName": "eve-utils",
"files": [
"build/**/*",
"node_modules/**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin"
],
"linux": {
"category": "Game",
"target": [
"deb",
"AppImage"
]
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "./build/pngegg.png"
}
}
}