-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "@lazycuh/angular-testing-kit",
"version": "2.0.3",
"scripts": {
"copy-assets": "cp CONTRIBUTING.md README.md LICENSE dist/*",
"build": "ng build && pnpm copy-assets",
"test": "ng test --browsers=ChromeHeadless",
"test:ci": "ng test --no-watch --browsers=ChromeHeadless",
"prepare": "husky",
"lint": "eslint projects/**/*.ts",
"lint-staged": "lint-staged",
"update-toc": "markdown-toc -i README.md",
"check-code-styles": "prettier --check \"**/(*.ts|*.json|*.md)\""
},
"type": "module",
"dependencies": {
"@angular/common": "^18.1.1",
"@angular/compiler": "^18.1.1",
"@angular/core": "^18.1.1",
"@angular/platform-browser": "^18.1.1",
"@angular/platform-browser-dynamic": "^18.1.1",
"js-beautify": "^1.15.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.1",
"@angular/cli": "^18.1.1",
"@angular/compiler-cli": "^18.1.1",
"@lazycuh/eslint-config-base": "^3.0.1",
"@types/jasmine": "~5.1.0",
"@types/js-beautify": "^1.14.3",
"angular-eslint": "^18.1.0",
"eslint": "^9.7.0",
"husky": "^9.1.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.4",
"markdown-toc": "^1.2.0",
"ng-packagr": "^18.1.0",
"prettier": "^3.3.3",
"typescript": "~5.5.3"
},
"lint-staged": {
"**/*.{ts,html}": [
"prettier -w --cache",
"eslint --fix --cache"
],
"**/*.{json,md,scss,yaml,yml}": [
"prettier -w --cache"
]
}
}