-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.84 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --config codegen.ts --watch",
"schema:download": "graphql-codegen --config codegen.ts",
"prestart": "npm run codegen",
"lint": "eslint \"src/**/*.{ts,js,html}\" --ext .ts,.js,.html --max-warnings=0",
"lint:fix": "eslint \"src/**/*.{ts,js,html}\" --ext .ts,.js,.html --fix",
"format": "prettier --write \"**/*.{ts,js,html,css,scss,json,md}\""
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.13",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.13",
"@angular/compiler": "^20.3.10",
"@angular/core": "^20.3.13",
"@angular/forms": "^20.3.12",
"@angular/material": "^20.2.13",
"@angular/platform-browser": "^20.3.12",
"@angular/router": "^20.3.13",
"@apollo/client": "^4.0.9",
"angular-gridster2": "^20.2.3",
"apexcharts": "^5.3.6",
"apollo-angular": "^12.1.0",
"apollo-upload-client": "^19.0.0",
"eslint": "^9.39.1",
"graphql": "^16.12.0",
"ng-apexcharts": "^2.0.3",
"prettier": "^3.6.2",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "^20.6.0",
"@angular-eslint/eslint-plugin": "^21.0.1",
"@angular-eslint/eslint-plugin-template": "^21.0.1",
"@angular-eslint/template-parser": "^20.6.0",
"@angular/build": "^20.3.11",
"@angular/cli": "^20.3.10",
"@angular/compiler-cli": "^20.3.12",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/introspection": "^5.0.0",
"@graphql-codegen/schema-ast": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-apollo-angular": "^4.0.1",
"@graphql-codegen/typescript-operations": "^5.0.4",
"@parcel/watcher": "^2.5.1",
"@playwright/test": "^1.56.1",
"@types/jasmine": "~5.1.13",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jasmine-core": "~5.12.1",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"playwright": "^1.56.1",
"typescript": "~5.9.3"
}
}