-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.07 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.07 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
{
"name": "@testing-library/angular-app",
"version": "0.0.0-semantically-released",
"scripts": {
"ng": "ng",
"prebuild": "rimraf dist",
"build": "ng build testing-library && npm run build:schematics && cpy ./README.md ./dist/@testing-library/angular",
"build:schematics": "tsc -p ./projects/testing-library/tsconfig.schematics.json",
"test": "ng test",
"test:testing-library": "ng test testing-library",
"test:example-app": "ng test example-app",
"test:jest-app": "ng test example-app-jest",
"test:karma-app": "ng test example-app-karma",
"lint": "ng lint",
"lint:all": "ng lint testing-library && ng lint example-app && ng lint example-app-karma",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pre-commit": "lint-staged",
"semantic-release": "semantic-release",
"prepare": "git config core.hookspath .githooks"
},
"dependencies": {
"@angular/animations": "21.0.5",
"@angular/cdk": "21.0.3",
"@angular/common": "21.0.5",
"@angular/compiler": "21.0.5",
"@angular/core": "21.0.5",
"@angular/material": "21.0.3",
"@angular/platform-browser": "21.0.5",
"@angular/platform-browser-dynamic": "21.0.5",
"@angular/router": "21.0.5",
"@ngrx/store": "20.0.0",
"@testing-library/dom": "^10.4.1",
"rxjs": "7.8.0",
"tslib": "~2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-builders/jest": "^20.0.0",
"@angular-devkit/core": "21.0.3",
"@angular-devkit/schematics": "21.0.3",
"@angular-eslint/builder": "21.1.0",
"@angular-eslint/eslint-plugin": "21.1.0",
"@angular-eslint/eslint-plugin-template": "21.1.0",
"@angular-eslint/schematics": "21.1.0",
"@angular-eslint/template-parser": "21.1.0",
"@angular/build": "^21.0.3",
"@angular/cli": "~21.0.3",
"@angular/compiler-cli": "21.0.5",
"@angular/forms": "21.0.5",
"@angular/language-service": "21.0.5",
"@eslint/eslintrc": "^3.3.1",
"@schematics/angular": "21.0.3",
"@testing-library/jasmine-dom": "^1.3.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/jasmine": "4.3.1",
"@types/jest": "30.0.0",
"@types/node": "22.10.1",
"@types/testing-library__jasmine-dom": "^1.3.4",
"@typescript-eslint/types": "^8.46.3",
"@typescript-eslint/utils": "^8.46.3",
"angular-eslint": "21.1.0",
"autoprefixer": "^10.4.21",
"cpy-cli": "^6.0.0",
"eslint": "^9.39.1",
"eslint-plugin-jest-dom": "~5.5.0",
"eslint-plugin-testing-library": "~7.13.3",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "30.2.0",
"jest-preset-angular": "^16.0.0",
"jsdom": "^27.3.0",
"karma": "6.4.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"lint-staged": "^16.2.6",
"ng-mocks": "^14.14.0",
"ng-packagr": "21.0.0",
"prettier": "2.6.2",
"rimraf": "^6.1.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "4.0.15"
}
}