forked from jsynowiec/airqmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "airqmon",
"version": "0.0.1",
"main": "build/main.js",
"engines": {
"node": ">=8.9.0"
},
"license": "APLv2",
"author": "Jakub Synowiec <github@jakubsynowiec.info>",
"scripts": {
"start": "gulp start",
"build": "gulp build",
"build:watch": "gulp watch",
"package": "gulp package"
},
"build": {
"mac": {
"category": "public.app-category.weather"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jsynowiec/airqmon"
},
"bugs": {
"url": "https://github.com/jsynowiec/airqmon/issues"
},
"homepage": "https://github.com/jsynowiec/airqmon",
"devDependencies": {
"@types/react": "^16.0.16",
"@types/react-dom": "^16.0.2",
"devtron": "^1.4.0",
"electron": "^1.7.9",
"electron-connect": "^0.6.2",
"electron-packager": "^9.1.0",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.1",
"gulp-less": "^3.3.2",
"gulp-sequence": "^0.4.6",
"gulp-typescript": "^3.2.2",
"gulp-useref": "^3.1.3",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.2.0",
"typescript": "^2.5.3"
},
"dependencies": {
"axios": "^0.17.1",
"photon": "git+https://github.com/connors/photon.git#v0.1.2-alpha",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}