-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.48 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.48 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
{
"name": "copyleaks-web-report",
"version": "0.0.0",
"private": false,
"scripts": {
"ng": "ng",
"start": "ng serve demo-app",
"build": "ng build demo-app",
"lint": "ng lint",
"lib:pack": "npm pack ./dist/copyleaks-web-report",
"local:package": "npm run lib:prettier && npm run lib:version && npm run script:extract-version && npm run lib:build && npm run lib:pack",
"lib:test": "ng test copyleaks-web-report",
"lib:lint": "ng lint copyleaks-web-report",
"lib:prettier": "prettier --write projects/copyleaks-web-report/**/*.{ts,js,css,scss,html}",
"lib:version": "cd projects/copyleaks-web-report && npm version patch",
"lib:build": "ng build copyleaks-web-report --configuration production",
"lib:copy-readme": "copy \"./README.md\" \"./dist/copyleaks-web-report/\"",
"lib:publish": "cd dist/copyleaks-web-report && npm publish",
"script:extract-version": "node scripts/extract-version.js",
"package": "npm run lib:prettier && npm run lib:version && npm run script:extract-version && npm run lib:build && npm run lib:copy-readme && npm run lib:publish",
"firebase-deploy": "npm run build && firebase deploy"
},
"dependencies": {
"@angular/animations": "^19.2.14",
"@angular/cdk": "^19.2.19",
"@angular/common": "^19.2.14",
"@angular/compiler": "^19.2.14",
"@angular/core": "^19.2.14",
"ngx-flexible-layout": "^19.0.0",
"@angular/forms": "^19.2.14",
"@angular/localize": "^19.2.14",
"@angular/material": "^18.2.14",
"@angular/platform-browser": "^19.2.14",
"@angular/platform-browser-dynamic": "^19.2.14",
"@angular/router": "^19.2.14",
"@ncstate/sat-popover": "^10.3.2",
"@swimlane/ngx-charts": "^22.0.0",
"chart.js": "^4.4.2",
"ngx-skeleton-loader": "^6.0.0",
"rxjs": "~6.6.7",
"scroll-into-view-if-needed": "^2.2.28",
"tslib": "^2.0.0",
"zone.js": "^0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.15",
"@angular/cli": "^19.2.15",
"@angular/compiler-cli": "^19.2.14",
"@angular/localize": "^18.2.13",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.2",
"@types/jasmine": "~3.10.0",
"@types/jest": "^24.9.1",
"@types/node": "^24.0.10",
"codelyzer": "^6.0.0",
"jest": "^24.9.0",
"ng-packagr": "^13.1.2",
"prettier": "^2.8.8",
"protractor": "~7.0.0",
"serialize-javascript": "^3.1.0",
"ts-node": "~7.0.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}