forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.4 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "octodash",
"description": "OctoDash is a simple, but beautiful dashboard for Octoprint.",
"version": "2.2.0",
"license": "Apache 2.0",
"homepage": "https://github.com/UnchartedBull/OctoDash",
"author": {
"name": "Timon Gaebelein",
"email": "timon.gaebelein@icloud.com"
},
"main": "main.js",
"browserslist": [
"chrome > 87"
],
"build": {
"appId": "octodash",
"productName": "OctoDash",
"directories": {
"output": "package"
},
"files": [
"main.js",
"helper",
"dist",
"angular.json",
"node_modules",
"themes/**/*.css",
"LICENSE.md",
"!**/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}"
],
"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 --max-warnings=0",
"lint:fix": "eslint ./src/ -c .eslintrc.js --ext .ts --fix",
"electron": "electron .",
"electron:dev": "electron . --serve --big",
"electron:serve": "wait-on http-get://localhost:4200/ && electron . --serve",
"electron:serve:big": "wait-on http-get://localhost:4200/ && electron . --serve --big",
"electron:pack": "electron-builder build -l",
"pack": "npm run ng:build && npm run electron:pack",
"pack:mac": "npm run ng:build && electron-builder build -m",
"ng:serve": "ng serve $npm_config_serve",
"ng:build": "ng build --configuration production",
"locale:extract": "ng extract-i18n --output-path src/locale",
"locale:update:all": "node -e 'require(`./helper/locale.js`).updateLocales()'",
"locale:update": "npm run locale:extract && npm run locale:update:all"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.1",
"@angular/cdk": "~12.0.1",
"@angular/common": "~12.0.1",
"@angular/compiler": "~12.0.1",
"@angular/core": "~12.0.1",
"@angular/forms": "~12.0.1",
"@angular/localize": "~12.0.1",
"@angular/material": "~12.0.1",
"@angular/platform-browser": "~12.0.1",
"@angular/platform-browser-dynamic": "~12.0.1",
"@angular/router": "~12.0.1",
"@fortawesome/angular-fontawesome": "~0.9.0",
"@fortawesome/fontawesome-svg-core": "~1.2.35",
"@fortawesome/free-solid-svg-icons": "~5.15.3",
"ajv": "~6.12.6",
"angular-svg-round-progressbar": "~6.0.1",
"bonjour": "~3.5.0",
"compare-versions": "~3.6.0",
"electron-store": "~8.0.0",
"got": "~11.8.2",
"lodash-es": "~4.17.21",
"lottie-web": "~5.7.8",
"ngx-electron": "~2.2.0",
"ngx-lottie": "~6.4.0",
"ngx-spinner": "~11.0.1",
"progress-stream": "~2.0.0",
"rxjs": "~7.0.1",
"tslib": "~2.2.0",
"v8-compile-cache": "~2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.1",
"@angular/cli": "~12.0.1",
"@angular/compiler-cli": "~12.0.1",
"@angular/language-service": "~12.0.1",
"@types/ajv": "~1.0.0",
"@types/bonjour": "~3.5.8",
"@types/got": "~9.6.11",
"@types/lodash-es": "~4.17.4",
"@types/node": "15.3.0",
"@typescript-eslint/eslint-plugin": "~4.24.0",
"@typescript-eslint/parser": "~4.24.0",
"codelyzer": "~6.0.2",
"electron": "~12.0.9",
"electron-builder": "~22.11.5",
"eslint": "7.26.0",
"eslint-plugin-import": "~2.23.2",
"eslint-plugin-prettier": "~3.4.0",
"eslint-plugin-simple-import-sort": "~7.0.0",
"npm-run-all": "~4.1.5",
"prettier": "~2.3.0",
"ts-node": "~9.1.1",
"typescript": "4.2.4",
"wait-on": "~5.3.0",
"xliff": "~5.5.2"
}
}