-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
88 lines (88 loc) · 2.56 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
{
"name": "airqmon",
"description": "A menu bar app that displays live air quality informations from the nearest Airly sensor station.",
"version": "2.1.1",
"main": "build/main.js",
"engines": {
"node": "12.18.3"
},
"license": "Apache-2.0",
"author": "Jakub Synowiec <jsynowiec@users.noreply.github.com>",
"scripts": {
"clean": "node bin/clean.js",
"build": "yarn run clean && webpack",
"build:watch": "WEBPACK_WATCH=true yarn run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write src/**/*.ts",
"package": "NODE_ENV=production yarn run build && node bin/pack.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "https://github.com/jsynowiec/airqmon"
},
"bugs": {
"url": "https://github.com/jsynowiec/airqmon/issues"
},
"homepage": "https://github.com/jsynowiec/airqmon",
"resolutions": {
"@types/react": "~16.9.0"
},
"devDependencies": {
"@types/enzyme-adapter-react-16": "~1.0.1",
"@types/jest": "~26.0.19",
"@types/lodash": "~4.14.123",
"@types/node": "~12.19.11",
"@types/react": "~16.14.2",
"@types/react-dom": "~16.9.10",
"@types/semver": "~7.3.4",
"@types/universal-analytics": "~0.4.3",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "~4.15.1",
"@typescript-eslint/parser": "~4.15.1",
"css-loader": "~5.0.1",
"del": "~6.0.0",
"electron": "11.2.3",
"electron-packager": "15.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.1",
"eslint": "~7.20.0",
"eslint-config-prettier": "~7.2.0",
"eslint-plugin-react": "~7.22.0",
"eslint-webpack-plugin": "~2.5.1",
"file-loader": "~6.2.0",
"html-webpack-plugin": "~5.1.0",
"jest": "~26.6.3",
"less": "~4.1.1",
"less-loader": "~7.2.1",
"mini-css-extract-plugin": "~1.3.3",
"prettier": "~2.2.1",
"ts-jest": "~26.5.1",
"ts-loader": "~8.0.12",
"typescript": "~4.1.3",
"webpack": "~5.22.0",
"webpack-cli": "~4.5.0"
},
"dependencies": {
"apollo-boost": "~0.4.4",
"axios": "~0.21.1",
"electron-is-dev": "~1.2.0",
"electron-store": "~7.0.2",
"graphql": "~15.5.0",
"lodash": "~4.17.21",
"photon": "https://github.com/connors/photon.git#v0.1.2-alpha",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"semver": "~7.3.4",
"uuid": "~8.3.2",
"winston": "~3.3.3"
},
"volta": {
"node": "12.18.3",
"yarn": "1.22.4"
}
}