-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "airqmon",
"description": "A menu bar app that displays live air quality informations from the nearest Airly sensor station.",
"version": "1.0.2",
"main": "build/main.js",
"engines": {
"node": ">=8.9.0"
},
"license": "Apache-2.0",
"author": "Jakub Synowiec <[email protected]>",
"scripts": {
"build:watch": "gulp watch",
"build": "gulp build",
"package": "gulp package",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"start": "gulp start"
},
"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/enzyme-adapter-react-16": "~1.0.1",
"@types/jest": "~22.1.1",
"@types/react": "~16.0.36",
"@types/react-dom": "~16.0.2",
"@types/semver": "~5.5.0",
"devtron": "~1.4.0",
"electron": "1.8.2",
"electron-connect": "^0.6.2",
"electron-packager": "11.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.1",
"gulp-less": "^3.3.2",
"gulp-sequence": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.2",
"gulp-useref": "^3.1.3",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.2.0",
"typescript": "~2.7.1"
},
"dependencies": {
"axios": "~0.17.1",
"electron-localshortcut": "~3.1.0",
"electron-store": "~1.3.0",
"photon": "https://github.com/connors/photon.git#v0.1.2-alpha",
"react": "~16.2.0",
"react-dom": "~16.2.0",
"rollbar": "~2.3.8",
"semver": "~5.5.0",
"universal-analytics": "~0.4.16"
},
"lint-staged": {
"src/**/*.{ts,tsx,less}": [
"prettier --write",
"git add"
]
}
}