-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
128 lines (128 loc) · 4.04 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
{
"name": "ngspot",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=18.10.0",
"npm": ">=8.19.0"
},
"scripts": {
"nx": "nx",
"cache:clean": "nx reset",
"c": "git-cz",
"start": "nx serve demo",
"start:prod": "nx serve demo --prod",
"test": "npm run affected:test",
"test:watch": "nx affected --target=test --watch",
"build:all": "nx run-many --target=build --all",
"build:demo": "nx run demo:build:production",
"build:demo:stats": "nx run demo:build:stats",
"publish:demo": "nx run demo:deploy",
"lint:all": "nx run-many --target=lint --fix --all",
"test:all": "nx run-many --target=test --all",
"format": "nx format:write",
"update": "nx migrate latest",
"affected": "nx affected",
"affected:test": "nx affected --target=test",
"migration": "nx migrate --run-migrations",
"graph": "nx graph",
"version:ng-superclass": "nx run ng-superclass:version",
"version:remote-data": "nx run remote-data:version",
"version:remote-data-rx": "nx run remote-data-rx:version",
"bundle-report": "webpack-bundle-analyzer dist/apps/demo/stats.json",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.7",
"@angular/cdk": "17.3.7",
"@angular/common": "17.3.7",
"@angular/compiler": "17.3.7",
"@angular/core": "17.3.7",
"@angular/forms": "17.3.7",
"@angular/material": "17.3.7",
"@angular/platform-browser": "17.3.7",
"@angular/platform-browser-dynamic": "17.3.7",
"@angular/router": "17.3.7",
"@types/trusted-types": "^2.0.2",
"bootstrap": "5.2.3",
"highlight.js": "^11.7.0",
"ngx-google-analytics": "^14.0.1",
"ngx-highlightjs": "^11.0.0-beta.1",
"raw-loader": "^4.0.2",
"rxjs": "7.8.1",
"tslib": "^2.3.0",
"zone.js": "0.14.5"
},
"devDependencies": {
"@angular-devkit/architect": "0.1703.6",
"@angular-devkit/build-angular": "17.3.6",
"@angular-devkit/core": "17.3.6",
"@angular-devkit/schematics": "17.3.6",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.0",
"@angular/compiler-cli": "17.3.7",
"@angular/language-service": "17.3.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@hirez_io/observer-spy": "^2.2.0",
"@jscutlery/semver": "^5.2.2",
"@ngneat/spectator": "^18.0.2",
"@nrwl/devkit": "18.3.4",
"@nx/angular": "18.3.4",
"@nx/cypress": "18.3.4",
"@nx/eslint": "18.3.4",
"@nx/eslint-plugin": "18.3.4",
"@nx/js": "18.3.4",
"@nx/workspace": "18.3.4",
"@schematics/angular": "17.3.6",
"@types/jasmine": "^4.0.0",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "7.3.0",
"@typescript-eslint/parser": "7.3.0",
"angular-cli-ghpages": "^2.0.0-beta.2",
"autoprefixer": "^10.4.0",
"cypress": "^9.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"jasmine-core": "^4.2.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"ng-mocks": "^14.5.1",
"ng-packagr": "17.3.0",
"nx": "18.3.4",
"postcss": "^8.4.5",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "3.2.5",
"tailwindcss": "^3.2.4",
"typescript": "5.4.5",
"webpack-bundle-analyzer": "^4.8.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}