-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.35 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.35 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
{
"name": "frontend-angular-ess",
"version": "0.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration=${dev}",
"build": "ng build",
"watch": "ng build --watch --configuration=${dev}",
"test": "jest --verbose",
"test:watch": "jest --watch",
"cy:open-e2e": "npx cypress open open --e2e --browser electron",
"cy:run-e2e": "npx cypress run --e2e",
"cy:show-coverage": "open ./cypress-coverage/lcov-report/index.html",
"lint": "npx eslint \"src/**/*.{js,ts,html}\" --quiet --fix",
"format": "npx prettier \"src/**/*.{js,ts,html,css,scss}\" --write"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/cdk": "^16.1.3",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/material": "^16.1.3",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^16.0.0",
"@angular-devkit/build-angular": "^16.1.3",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "~16.1.3",
"@angular/compiler-cli": "^16.1.0",
"@badeball/cypress-cucumber-preprocessor": "^18.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@cucumber/cucumber": "^9.2.0",
"@cypress/code-coverage": "^3.10.8",
"@testing-library/jest-dom": "^5.16.5",
"@types/cypress__code-coverage": "^3.10.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"cypress": "^12.16.0",
"dotenv-webpack": "^8.0.1",
"esbuild": "^0.18.10",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.0",
"jest-preset-angular": "^13.1.1",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "~5.0.0"
}
}