forked from Hypercubed/dice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.29 KB
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
{
"name": "dice",
"version": "0.0.0",
"scripts": {
"ng": "nx",
"start": "nx serve --host=0.0.0.0 --ssl --port=4200",
"prepwa": "npm run build",
"pwa": "http-server -p 8080 -c-1 dist/dice",
"build": "nx build --configuration production",
"watch": "nx build --watch --configuration development",
"watch:test": "nx test",
"test": "run-s test:*",
"test:prettier": "prettier \"src/**/*.{ts,js,css,md}\" --check",
"test:lint": "nx lint",
"test:unit": "nx test --browsers=Headless --no-watch",
"predeploy": "npm run build",
"deploy": "node ./scripts/deploy-version.js",
"lint": "nx lint",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.{js,ts,html}\" --write",
"fix:lint": "eslint \"src/**/*.{js,ts}\" --ext .ts --fix",
"precommit": "pretty-quick --staged",
"audit": "run-s audit:*",
"audit:npm": "npm audit --omit dev",
"audit:npm-check": "npm-check --skip-unused || true",
"npm-update": "npm-check --skip-unused -u",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.9",
"@angular/cdk": "17.3.9",
"@angular/common": "17.3.9",
"@angular/compiler": "17.3.9",
"@angular/core": "17.3.9",
"@angular/forms": "17.3.9",
"@angular/material": "17.3.9",
"@angular/platform-browser": "17.3.9",
"@angular/platform-browser-dynamic": "17.3.9",
"@angular/router": "17.3.9",
"@angular/service-worker": "17.3.9",
"@ngrx/component-store": "^17.2.0",
"@nx/angular": "19.6.5",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"angular-password-strength-meter": "^11.0.0",
"angularx-qrcode": "^17.0.1",
"html5-qrcode": "^2.2.0",
"ismobilejs": "^1.1.1",
"material-design-icons": "^3.0.1",
"material-icons": "^1.13.12",
"qrcode-svg": "^1.1.0",
"rxjs": "7.8.1",
"svgsaver": "^0.9.0",
"tslib": "^2.3.0",
"url-safe-base64": "^1.1.1",
"zone.js": "0.14.8",
"zxcvbn3": "^0.1.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.9",
"@angular-devkit/core": "17.3.9",
"@angular-devkit/schematics": "17.3.9",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.0",
"@angular/compiler-cli": "17.3.9",
"@nx/workspace": "19.6.5",
"@schematics/angular": "17.3.9",
"@types/crypto-js": "^4.1.1",
"@types/jasmine": "4.0.3",
"@types/node": "18.19.9",
"@types/qrcode": "^1.5.5",
"@types/qrcode-svg": "^1.1.1",
"@types/semver": "^7.3.9",
"@types/url-safe-base64": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"angular-cli-ghpages": "^2.0.1",
"caniuse-lite": "^1.0.30001658",
"eslint": "^8.2.0",
"husky": "^7.0.0",
"jasmine-core": "4.2.0",
"karma": "6.4.4",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"npm-check": "^6.0.1",
"npm-run-all": "^4.1.5",
"nx": "19.6.5",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "5.4.5"
}
}