-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.97 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
{
"name": "adm",
"version": "0.1.1",
"description": "Aria download manager",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"dev": "concurrently \"yarn watch\" \"yarn start\"",
"set": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --colors",
"test": "eslint ./",
"prettier": "prettier --write main.js **/*.js **/**/*.js",
"gyp-rebuild": "HOME=~/.electron-gyp node-gyp rebuild --target=1.4.13 --arch=x64 --target_platform=linux --dist-url=https://atom.io/download/atom-shell",
"gyp-clean": "node-gyp clean",
"gyp-config": "node-gyp configure",
"gyp-build": "node-gyp build",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.electron.ADM",
"nodeGypRebuild": "true",
"productName": "ADM",
"files": [
"**/*",
"!lib/*",
"!lib64/*",
"!screenshot/*",
"build/Release/**/*"
],
"extraFiles": [
{
"from": "lib/",
"to": "usr/lib/"
},
{
"from": "lib64/",
"to": "usr/lib/"
}
],
"linux": {
"target": [
"AppImage"
],
"category": "Network"
}
},
"repository": "https://github.com/jk-gan/ADM",
"author": {
"name": "Jun Kai Gan",
"email": "kuhn96@gmail.com",
"url": "https://github.com/jk-gan"
},
"contributors": [
{
"name": "Pai Lee Wai",
"email": "pailee.wai@gmail.com",
"url": "https://github.com/plwai"
}
],
"postinstall": "electron-builder install-app-deps",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"electron": "^2.0.2",
"electron-builder": "^20.28.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.0",
"eslint-plugin-standard": "^4.0.0",
"flow": "^0.2.3",
"node-gyp": "^3.7.0",
"prettier": "1.14.2",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"electron-prompt": "^1.1.0-1",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"mobx-state-tree": "^2.2.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-table": "^6.8.6",
"shortid": "^2.2.8",
"styled-components": "^3.2.6",
"upath": "^1.1.0"
}
}