-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "testing-angular-with-testing-library",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "jest --watch",
"test": "jest",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.2.0",
"@angular/common": "~13.2.0",
"@angular/compiler": "~13.2.0",
"@angular/core": "~13.2.0",
"@angular/forms": "~13.2.0",
"@angular/platform-browser": "~13.2.0",
"@angular/platform-browser-dynamic": "~13.2.0",
"@angular/router": "~13.2.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.4",
"@angular/cli": "~13.2.4",
"@angular/compiler-cli": "~13.2.0",
"@testing-library/angular": "^11.0.4",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.5.1",
"@types/node": "^12.11.1",
"@types/node-fetch": "^2.6.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-preset-angular": "^12.0.0",
"lint-staged": "^12.4.1",
"msw": "^0.39.2",
"ng-mocks": "^13.5.1",
"node-fetch": "^3.2.4",
"prettier": "^2.6.2",
"typescript": "~4.5.2"
},
"lint-staged": {
"*.{ts,css,md,html}": "prettier --write"
},
"msw": {
"workerDirectory": "src"
}
}