-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "angular-dev-enhanced",
"version": "0.0.0",
"scripts": {
"start": "ng serve --host 0.0.0.0",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "jest --config=jest.config.js --coverage --coverageDirectory=./.coverage/jest --logHeapUsage",
"commitlint": "commitlint --edit",
"prepare": "husky",
"lint": "pnpm eslint .",
"lint:fix": "pnpm eslint . --fix",
"script:test": "node ./scripts/pre-commit-check.js",
"playwright": "npx playwright test --config playwright.config.ts",
"playwright:ui": "npx playwright test --ui"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.4",
"@angular/cli": "^18.0.4",
"@angular/compiler-cli": "^18.0.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@playwright/test": "^1.45.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "~9.5.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jest-preset-angular": "^14.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.4.2",
"typescript-eslint": "^7.13.1"
}
}