-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 4.28 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
{
"dependencies": {
"@angular-devkit/build-angular": "^14.1.0",
"@angular/animations": "^14.1.0",
"@angular/cdk": "^14.1.0",
"@angular/common": "^14.1.0",
"@angular/compiler": "^14.1.0",
"@angular/core": "^14.1.0",
"@angular/fire": "^7.4.1",
"@angular/forms": "^14.1.0",
"@angular/material": "^14.1.0",
"@angular/platform-browser": "^14.1.0",
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/service-worker": "^14.1.0",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"firebase": "^9.9.1",
"lodash-es": "^4.17.21",
"ngx-image-cropper": "^6.2.2",
"rxfire": "^6.0.3",
"rxjs": "^7.5.6",
"tslib": "^2.3.1",
"zone.js": "^0.11.7"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1401.0",
"@angular-devkit/schematics": "^14.1.0",
"@angular-eslint/eslint-plugin": "^14.0.2",
"@angular-eslint/eslint-plugin-template": "^14.0.2",
"@angular-eslint/schematics": "^14.0.2",
"@angular-eslint/template-parser": "^14.0.2",
"@angular/cli": "^14.1.0",
"@angular/compiler-cli": "^14.1.0",
"@biesbjerg/ngx-translate-extract": "^7.0.4",
"@cspell/dict-de-de": "^2.1.0",
"@cspell/dict-fr-fr": "^2.1.0",
"@schematics/angular": "^14.1.0",
"@types/jasmine": "^4.0.3",
"@types/jasminewd2": "^2.0.10",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.11.47",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"cspell": "^6.5.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.2.2",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-rxjs-angular": "^2.0.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-total-functions": "^6.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"http-server": "^14.1.1",
"jasmine-core": "^4.3.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"prettier": "^2.7.1",
"protractor": "~7.0.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"license": "MIT",
"name": "angular-sudoku",
"private": true,
"repository": {
"type": "git",
"url": "https://gitlab.com/winni/angular-sudoku"
},
"scripts": {
"serve": "ng serve",
"build": "ng build --configuration production",
"build-compress-serve": "npm run build && npm run compress && npm run http-server",
"check": "npm run lint && npm run eslint_print-config && npm run stylelint_print-config && npm run test -- --no-watch --no-progress --browsers=ChromeHeadlessCI && npm run build",
"compress": "ts-node --project tsconfig.node.json compress.ts",
"cspell": "cspell --config .vscode/cSpell.json \"**\"",
"e2e": "ng e2e",
"http-server": "http-server --brotli --gzip -p 4200 dist",
"lint": "prettier --check . && npm run eslint && npm run stylelint && npm run cspell",
"eslint": "npx eslint src --ext .ts,.component.html --quiet --format visualstudio",
"eslint_print-config": "npx eslint --print-config src/main.ts > .eslint_print-config-ts.json && npx eslint --print-config src/app/app.component.html > .eslint_print-config-html.json",
"ngx-translate-extract": "ngx-translate-extract --input src --output src/assets/i18n/de.json src/assets/i18n/en.json src/assets/i18n/fr.json --sort --format namespaced-json && prettier --write src/assets/i18n/*.json",
"prettier": "prettier --write .",
"stylelint": "stylelint \"src/**/*.scss\" --report-needless-disables --reportInvalidScopeDisables --reportDescriptionlessDisables --formatter unix",
"stylelint_fix": "npm run stylelint -- --fix",
"stylelint_print-config": "npx stylelint --print-config .stylelintrc.json > .stylelintrc_print-config.json",
"test": "ng test",
"update": "npm update --save && npm audit fix --audit-level=high && npm i && npm run prettier && npm run eslint_print-config && npm run check && npm outdated",
"update_angular": "ng update @angular-eslint/schematics @angular/cli @angular/core @angular/cdk @angular/material"
},
"version": "0.0.0"
}