-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3 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
{
"name": "magicmirror",
"description": "",
"version": "0.0.4",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"install": "ansible-galaxy install -r requirements.yml && cd server && go mod tidy -compat=1.17",
"postinstall": "ngcc --tsconfig tsconfig.json",
"start": "ng serve",
"start:server": "cd server && gow run -ldflags=\"$LDFLAGS\" main.go --config ../config.yml",
"build": "ng build",
"lint": "ng lint",
"format": "prettier --write \"**/*.{ts,scss,md,html,json,yml}\"",
"provision": "ansible-playbook --diff --ask-vault-pass --extra-vars @ansible/vars/vault.yml ansible/playbooks/provision.yml",
"ssh": "ssh -t -i \"$ANSIBLE_PRIVATE_KEY_FILE\" \"$SSH_USER@$SSH_HOST\"",
"vault:encrypt": "ansible-vault encrypt ansible/vars/vault.yml",
"vault:decrypt": "ansible-vault decrypt ansible/vars/vault.yml",
"version": "bump --yes package.json",
"changelog": "standard-changelog"
},
"private": true,
"prettier": "@pascaliske/prettier-config",
"dependencies": {
"@angular/animations": "~13.1.3",
"@angular/common": "~13.1.3",
"@angular/compiler": "~13.1.3",
"@angular/core": "~13.1.3",
"@angular/forms": "~13.1.3",
"@angular/platform-browser": "~13.1.3",
"@angular/platform-browser-dynamic": "~13.1.3",
"@angular/router": "~13.1.3",
"@angular/service-worker": "~13.1.3",
"@fortawesome/angular-fontawesome": "0.10.1",
"@fortawesome/fontawesome-svg-core": "~1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@ngneat/until-destroy": "^9.0.0",
"@ngrx/effects": "^13.0.2",
"@ngrx/store": "^13.0.2",
"@ngrx/store-devtools": "^13.0.2",
"@ngx-translate/core": "^14.0.0",
"@pascaliske/ngx-sentry": "^3.0.1",
"@sentry/browser": "^6.17.6",
"date-fns": "^2.28.0",
"modularscale-sass": "^3.0.10",
"ngx-progressbar": "^7.0.0",
"normalize-scss": "^7.0.1",
"rxjs": "~7.5.3",
"ts-cacheable": "^1.0.6",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "~13.2.2",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "~13.2.2",
"@angular/compiler-cli": "~13.1.3",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@pascaliske/eslint-config": "^2.0.5",
"@pascaliske/prettier-config": "^1.1.4",
"@rstacruz/bump-cli": "^2.0.1",
"@types/node": "^17.0.16",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"standard-changelog": "^2.0.27",
"typescript": "~4.5.5"
}
}