-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "reactron",
"displayName": "Projeto base para uma aplicacao React/Electron/Material",
"description": "Projeto base para uma aplicacao React/Electron/Material",
"version": "1.1.0",
"license": "MIT",
"repository": "https://github.com/ricardomansano/reactron",
"publisher": "Mansano",
"author": {
"name": "Ricardo Mansano",
"email": "[email protected]"
},
"main": "app/main.js",
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"start": "gulp",
"dist": "gulp dist"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"electron": "5.0.10",
"electron-builder": "^20.39.0",
"electron-react-devtools": "^0.5.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-livereload": "^4.0.1",
"jest": "^24.8.0",
"react-test-renderer": "^16.8.6"
},
"dependencies": {
"@material-ui/core": "^4.4.0",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "^4.3.3",
"@types/material-ui": "^0.21.7",
"electron-is-dev": "^1.1.0",
"ini": "^1.3.5",
"material-ui": "^0.20.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1"
},
"build": {
"appId": "com.ricardomansano.rectron",
"linux": {
"target": [
"dir"
]
},
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64",
"ia32"
]
}
]
},
"mac": {
"category": "your.app.category.type"
}
}
}