-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "electron-resource-monitor",
"version": "0.1.0",
"description": "Simple cross platform resource monitor",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development electron .",
"lint": "eslint --fix ./ --ext js",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"package": "electron-packager . ResourceMonitor --overwrite --icon=./src/assets/icon --out=release_builds",
"release": "npm run build && npm run package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlonardi/electron-resource-monitor.git"
},
"keywords": [
"electron",
"resource",
"monitor"
],
"author": "Jarno Lonardi",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlonardi/electron-resource-monitor/issues"
},
"homepage": "https://github.com/jlonardi/electron-resource-monitor#readme",
"dependencies": {
"chart.js": "^2.7.2",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^1.0.0",
"electron": "^2.0.9",
"electron-packager": "^12.1.2",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
}
}