-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.05 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
{
"name": "sleep-tight-app",
"productName": "Sleep Tight",
"version": "1.0.0",
"description": "Put your computer to sleep after some time, via your menubar.",
"main": "src/index.js",
"scripts": {
"start": "npx electron-forge start",
"dev": "env NODE_ENV=development electron-forge start",
"package": "npx electron-forge package",
"make": "npx electron-forge make",
"publish": "npx electron-forge publish",
"lint": "eslint --cache --color --ext .jsx,.js src",
"omp": "open out/sleep-tight-darwin-x64/sleep-tight.app/Contents/MacOS/sleep-tight",
"fix": "eslint --fix src/*",
"bump": "npm version patch && git push",
"publocalmac": "rm -rf node_modules && yarn install && electron-forge publish --platform=darwin",
"publocallinux": "rm -rf node_modules && yarn install && electron-forge publish --platform=linux",
"publocalwin": "rm -rf node_modules && yarn install && electron-forge publish --platform=win32"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/alexcpendleton/sleep-tight.git"
},
"author": {
"name": "Alexander Pendleton",
"email": "alexcpendleton@gmail.com",
"url": "https://github.com/alexcpendleton/sleep-tight"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcpendleton/sleep-tight/issues"
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"dmg"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"icon": "src/resources/icon.icns",
"osxSign": true
},
"electronWinstallerConfig": {
"name": "sleep_tight"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "alexcpendleton",
"name": "sleep-tight",
"draft": false,
"prerelease": false
},
"windowsStoreConfig": {
"packageName": "Sleep Tight",
"name": "Sleep Tight"
}
}
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.17",
"babel-runtime": "^6.26.0",
"electron-compile": "^6.4.3",
"electron-devtools-installer": "^2.1.0",
"electron-squirrel-startup": "^1.0.0",
"menubar": "^5.2.3",
"nanotimer": "^0.3.15",
"power-off": "^1.1.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"sleep-mode": "^1.1.0",
"typeface-roboto": "^0.0.54"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.2.2",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7",
"prettier": "^1.14.3"
}
}