-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "Epic_Epics",
"version": "1.1.0",
"description": "Easily manage epics for agile teams",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron -r babel-register .",
"pack": "electron-builder --dir",
"dist-all": "electron-builder build --mac --win --linux",
"dist-mac": "electron-builder build --mac",
"dist-win": "electron-builder build --win",
"dist-linux": "electron-builder build --linux"
},
"build": {
"appId": "com.epicecpis.app",
"mac": {
"category": "epicecpis.app.type",
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"author": "Xavier Hocquet",
"license": "Apache-2.0",
"postinstall": "electron-builder install-app-deps",
"dependencies": {
"@material-ui/core": "^3.x.x",
"@material-ui/icons": "^3.x.x",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"draft-js": "^0.10.5",
"draft-js-markdown-plugin": "^3.0.4",
"draft-js-plugins-editor": "^2.1.1",
"electron-reload": "^1.2.5",
"electron-store": "^2.0.0",
"immutability-helper": "^2.7.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-persist": "^5.10.0",
"redux-persist-electron-storage": "^1.1.2",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"electron": "^2.0.8",
"electron-builder": "^20.28.4",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1"
}
}