-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.48 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
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": "~13.3.0",
"@angular/cdk": "^13.3.9",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "~13.3.0",
"@angular/localize": "^13.3.12",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@ncstate/sat-popover": "^4.0.0",
"@swimlane/ngx-charts": "^20.5.0",
"chart.js": "^4.4.2",
"ngx-skeleton-loader": "^5.0.0",
"rxjs": "~6.6.7",
"scroll-into-view-if-needed": "^2.2.28",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@angular/localize": "^13.3.12",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.2",
"@types/jasmine": "~3.10.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.11.1",
"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": "~4.4.4"
},
"publishConfig": {
"access": "public"
}
}