-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.77 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.77 KB
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
{
"name": "next",
"productName": "Next助手",
"version": "1.0.0",
"description": "Android 助手工具",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --cache --color --ext .jsx,.js src",
"background": "tiffutil -cathidpicheck assets/background.png assets/background@2x.png -out assets/background.tiff"
},
"keywords": [],
"author": "aven",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"dmg"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"icon": "assets/icon.icns",
"appCategoryType": "app-category-type=public.app-category.developer-tools",
"appBundleId": "cn.hacktons.next",
"prune": true
},
"electronWinstallerConfig": {
"name": "next"
},
"electronInstallerDMG": {
"icon": "assets/volume.icns",
"background": "assets/background.tiff",
"format": "ULFO",
"overwrite": true
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "next"
}
}
},
"dependencies": {
"@material-ui/core": "^4.0.1",
"@material-ui/icons": "^4.0.1",
"app-root-dir": "^1.0.2",
"appium-adb": "^7.7.1",
"classnames": "^2.2.6",
"electron-compile": "^6.4.3",
"electron-devtools-installer": "^2.1.0",
"electron-squirrel-startup": "^1.0.0",
"fix-path": "^2.1.0",
"image-size": "^0.6.3",
"looks-same": "^7.2.1",
"node-static": "^0.7.11",
"qrcode": "^1.3.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-highlight": "^0.12.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-loadable": "^5.5.0",
"recharts": "^1.6.2",
"shell-env": "^3.0.0"
},
"devDependencies": {
"babel-plugin-dynamic-import-node": "^2.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"electron-forge": "^5.2.2",
"electron-prebuilt-compile": "2.0.7",
"eslint": "^4",
"eslint-config-airbnb": "^15",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^5",
"eslint-plugin-react": "^7"
}
}