-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.48 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
{
"name": "rf-online-launcher",
"productName": "RF-Oswald",
"version": "1.0.6",
"description": "RF-Online Launcher",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package --arch=ia32",
"publish": "electron-forge publish --arch=ia32",
"make": "electron-forge make --arch=ia32"
},
"keywords": [],
"author": "Ilya Gerasimov",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel",
"zip"
]
},
"electronPackagerConfig": {
"asar": true,
"packageManager": "npm",
"icon": "icon.ico",
"ignore": "^/(.vscode|common|out|temporary)"
},
"electronWinstallerConfig": {
"name": "RF_Oswald"
},
"github_repository": {
"owner": "Omashu",
"name": "rf-online-oswald-launcher"
}
}
},
"dependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"bootstrap": "^4.1.2",
"classnames": "^2.2.6",
"electron-compile": "^6.4.3",
"electron-log": "^2.2.16",
"electron-squirrel-startup": "^1.0.0",
"extract-zip": "^1.6.7",
"font-awesome": "^4.7.0",
"lodash": "^4.17.10",
"md5": "^2.2.1",
"md5-file": "^4.0.0",
"moment": "^2.22.2",
"notie": "^4.3.1",
"react": "^16.4.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.4.1",
"recursive-readdir": "^2.2.2",
"request": "^2.87.0",
"socket.io-client": "^2.1.1",
"styled-components": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-pure-class-to-function": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.18",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"electron-forge": "^5.2.2",
"electron-prebuilt-compile": "2.0.4",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3"
}
}