-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "zen-totem",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"format:all": "npx prettier --write '**/*.{ts,js,less,html,json,md}'",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@taiga-ui/cdk": "^3.29.2",
"@taiga-ui/core": "^3.29.2",
"@taiga-ui/icons": "^3.29.2",
"@taiga-ui/kit": "^3.29.2",
"@taiga-ui/styles": "^3.29.2",
"@tinkoff/ng-dompurify": "3.0.0",
"dompurify": "2.2.9",
"prettier": "^2.8.8",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.2",
"@angular/cli": "~16.0.2",
"@angular/compiler-cli": "^16.0.0",
"@testing-library/angular": "^14.1.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-preset-angular": "^13.1.1",
"lint-staged": "^13.2.2",
"typescript": "~5.0.2"
},
"prettier": {
"singleQuote": true
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
]
}
}