This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.31 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
{
"name": "decaffeinater",
"description": "An app which closes apps if you use them too much.",
"version": "1.3.0-rc.1",
"author": "Ibrahim Ansari <[email protected]>",
"main": "src/main.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/ibujs/decaffeinater.git"
},
"scripts": {
"start": "electron .",
"debug": "electron . --inspect=9222 --remote-debugging-port=9229",
"build-linux": "export NODE_ENV=production && electron-packager . decaffeinater --out=dist --overwrite",
"build-win": "set NODE_ENV=production && electron-packager . decaffeinater --asar --out=dist --overwrite --icon build/icon.ico",
"build-mac": "npm run build-linux --- --icon build/icon.icns",
"make-exe": "npm run build-win && node build/winBuild.js",
"make-dmg": "npm run build-mac && node build/macBuild.js",
"make-linux-installer": "npm run build-linux && node build/linuxBuild.js",
"lint": "flow check && eslint .",
"test": "ava"
},
"dependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"material-ui": "^1.0.0-beta.34",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.0.2",
"@types/electron-packager": "^10.1.0",
"@types/electron-winstaller": "^2.6.1",
"@types/material-ui": "^0.20.7",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"ava": "^0.25.0",
"babel-eslint": "^8.2.2",
"babel-polyfill": "^6.26.0",
"devtron": "^1.4.0",
"electron": "^1.8.2",
"electron-devtools-installer": "^2.2.3",
"electron-installer-dmg": "^0.2.1",
"electron-installer-linux": "^1.1.1",
"electron-installer-snap": "^2.0.1",
"electron-packager": "^11.0.1",
"electron-winstaller": "^2.6.4",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.66.0"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
}
}