forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.59 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "octodash",
"description": "OctoDash is a simple, but beautiful dashboard for Octoprint.",
"version": "1.5.0",
"license": "Apache 2.0",
"homepage": "https://github.com/UnchartedBull/OctoDash",
"author": {
"name": "Timon Gaebelein",
"email": "timon.gaebelein@icloud.com"
},
"main": "main.js",
"files": [
"main.js",
"node_modules",
"dist",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"build": {
"appId": "octodash",
"productName": "OctoDash",
"directories": {
"output": "package"
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"armv7l",
"arm64",
"x64"
]
}
],
"category": "Utility"
}
},
"scripts": {
"ng": "ng",
"start": "npm-run-all -p ng:serve electron:serve electron:serve:big",
"start:big": "npm-run-all -p ng:serve electron:serve:big",
"build": "npm run ng:build && electron .",
"test": "",
"lint": "eslint ./src/ -c .eslintrc.js --ext .ts",
"lint:fix": "eslint ./src/ -c .eslintrc.js --ext .ts --fix",
"electron": "electron .",
"electron:serve": "wait-on http-get://localhost:4200/ && electron . --serve",
"electron:serve:big": "wait-on http-get://localhost:4200/ && electron . --serve --big",
"pack": "npm run ng:build && electron-builder build -l",
"pack:mac": "npm run ng:build && electron-builder build -m",
"ng:serve": "ng serve",
"ng:build": "ng build --prod"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.0.1",
"@angular/cdk": "^9.0.0",
"@angular/common": "~9.0.1",
"@angular/compiler": "~9.0.1",
"@angular/core": "~9.0.1",
"@angular/forms": "~9.0.1",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "~9.0.1",
"@angular/platform-browser-dynamic": "~9.0.1",
"@angular/router": "~9.0.1",
"@fortawesome/angular-fontawesome": "^0.6.1",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"ajv": "^6.12.2",
"angular-svg-round-progressbar": "^3.0.1",
"electron-store": "^5.2.0",
"lodash": "^4.17.15",
"ngx-spinner": "^9.0.2",
"rxjs": "~6.5.5",
"tslib": "^1.13.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.9",
"@angular/cli": "~9.1.9",
"@angular/compiler-cli": "^9.0.7",
"@angular/language-service": "~9.1.11",
"@types/ajv": "^1.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^3.3.0",
"codelyzer": "^5.2.2",
"electron-builder": "^22.7.0",
"electron-reload": "^1.5.0",
"electron": "^9.0.4",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint": "^5.16.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "~8.10.2",
"typescript": "~3.7.5",
"wait-on": "^5.0.1"
}
}