-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
executable file
·98 lines (98 loc) · 3.63 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
{
"name": "angularexampleapp",
"version": "17.0.0",
"scripts": {
"prepare": "husky install",
"start": "ng serve --configuration=development-en --open",
"start:es": "ng serve --configuration=development-es --open",
"extract": "ng extract-i18n --format=xlf --output-path=src/locale",
"lint": "ng lint && stylelint \"src/**/*.{css,scss}\"",
"test": "ng test --code-coverage --no-watch",
"test:watch": "ng test --code-coverage",
"e2e": "npm run playwright",
"playwright": "playwright test",
"build": "ng build && mv -v dist/en/* dist/ && rm -Rf dist/en",
"bundle-report": "ng build --stats-json && webpack-bundle-analyzer dist/en/stats.json",
"ci": "npm run lint && npm run test && npm run e2e && npm run playwright && npm run build",
"release:patch": "standard-version --release-as patch && git push --follow-tags origin master",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master"
},
"private": true,
"dependencies": {
"@angular/animations": "17.0.6",
"@angular/common": "17.0.6",
"@angular/compiler": "17.0.6",
"@angular/core": "17.0.6",
"@angular/forms": "17.0.6",
"@angular/localize": "17.0.6",
"@angular/platform-browser": "17.0.6",
"@angular/platform-browser-dynamic": "17.0.6",
"@angular/router": "17.0.6",
"@apollo/client": "3.8.8",
"@ngneat/elf": "2.4.0",
"@ngneat/elf-devtools": "1.3.0",
"@ngneat/elf-persist-state": "1.2.0",
"apollo-angular": "6.0.0",
"bootstrap": "5.2.3",
"class-validator": "0.14.0",
"graphql": "16.8.1",
"jwt-decode": "4.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.6",
"@angular-eslint/builder": "17.1.1",
"@angular-eslint/eslint-plugin": "17.1.1",
"@angular-eslint/eslint-plugin-template": "17.1.1",
"@angular-eslint/schematics": "17.1.1",
"@angular-eslint/template-parser": "17.1.1",
"@angular/cli": "17.0.6",
"@angular/compiler-cli": "17.0.6",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@playwright/test": "1.40.1",
"@types/bootstrap": "5.2.10",
"@types/jasmine": "5.1.4",
"@types/validator": "13.11.7",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-regexp": "2.1.2",
"eslint-plugin-rxjs-angular": "2.0.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-sonarjs": "0.23.0",
"husky": "8.0.3",
"jasmine-core": "5.1.1",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "15.2.0",
"ng-extract-i18n-merge": "2.9.0",
"ng-mocks": "14.12.1",
"playwright": "1.40.1",
"postcss-scss": "4.0.9",
"prettier": "3.1.0",
"prettier-eslint": "16.1.2",
"standard-version": "9.5.0",
"stylelint": "15.11.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recess-order": "4.4.0",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"stylelint-selector-bem-pattern": "3.0.1",
"ts-loader": "9.5.1",
"typescript": "5.2.2",
"webpack-bundle-analyzer": "4.10.1"
}
}