-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.45 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.45 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@scottlogic/tech-carbon-estimator",
"version": "0.0.0-semantically-released",
"keywords": [
"sustainability",
"carbon",
"estimator",
"scott",
"logic",
"web"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:dev": "ng serve --configuration development",
"start:npm-package": "ng serve --configuration npm-package",
"prepare": "bash ./scripts/prepare.sh",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"playwright-install": "npx playwright install --with-deps",
"playwright-test": "npx playwright test",
"playwright-update-screenshots": "npx playwright test --update-snapshots",
"playwright-allure": "npx allure generate ./allure-results -o ./playwright-report/allure-report && npx allure open ./playwright-report/allure-report",
"verify-release": "bash ./scripts/verify-release.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.16",
"@angular/cdk": "^20.0.0",
"@angular/common": "^20.3.16",
"@angular/compiler": "^20.3.16",
"@angular/core": "^20.3.16",
"@angular/elements": "^20.3.16",
"@angular/forms": "^20.3.16",
"@angular/platform-browser": "^20.3.16",
"@angular/platform-browser-dynamic": "^20.3.16",
"@angular/router": "^20.3.16",
"@tailwindcss/postcss": "^4.1.11",
"@tgwf/co2": "^0.16.8",
"html2canvas-pro": "^1.5.11",
"jspdf": "^4.0.0",
"lodash-es": "^4.17.21",
"ng-apexcharts": "^1.17.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.13",
"@angular-eslint/builder": "^20.0.0",
"@angular-eslint/eslint-plugin": "^20.0.0",
"@angular-eslint/eslint-plugin-template": "^20.0.0",
"@angular-eslint/schematics": "^20.0.0",
"@angular-eslint/template-parser": "^20.0.0",
"@angular/cli": "^20.3.13",
"@angular/compiler-cli": "^20.3.16",
"@axe-core/playwright": "^4.11.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@types/jasmine": "~5.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.1.0",
"@types/tgwf__co2": "^0.14.2",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"@web/test-runner": "^0.20.2",
"allure-playwright": "^3.4.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jasmine-core": "~5.9.0",
"ng-mocks": "^14.13.0",
"pdf-to-png-converter": "^3.11.0",
"postcss": "^8.5.6",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"semantic-release": "^25.0.2",
"semantic-release-unsquash": "^0.3.0",
"tailwindcss": "^4.1.11",
"typescript": "~5.8.0"
},
"overrides": {
"command-line-usage": "^7.0.3",
"braces": "^3.0.3",
"ip": "^2.0.1",
"ws": "^8.17.1",
"@web/test-runner-core": "^0.13.4",
"@web/dev-server": "^0.4.6"
},
"files": [
"dist/tech-carbon-estimator/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ScottLogic/sl-tech-carbon-estimator.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}