-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.63 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
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
{
"name": "destiny-dashboard",
"version": "0.88.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4321 --open",
"build": "ng build",
"build:stats": "ng build --configuration production --stats-json",
"analyze": "webpack-bundle-analyzer dist/destiny-dashboard/stats.json",
"test": "ng test --codeCoverage=true",
"test:data": "ng test --project=data --codeCoverage=true --browsers=ChromeHeadless",
"test:data:chrome": "ng test --project=data",
"test:components": "ng test --project=components --codeCoverage=true",
"test-service-worker": "http-server -p 4321 -c-1 dist/destiny-dashboard",
"lint": "ng lint",
"e2e": "ng e2e",
"netlify": "netlify deploy --dir=./dist/destiny-dashboard --prod",
"deploy:patch": "npm run release && ng build --configuration production && npm run netlify",
"deploy": "npm run release-minor && ng build --configuration production && npm run netlify",
"release": "standard-version",
"release-minor": "npm run release -- --release-as minor",
"release-patch": "npm run release -- --release-as patch",
"storybook": "start-storybook --port=6006",
"postinsta": "node patch-webpack.js",
"postinstall": "ngcc",
"swagger-gen": "openapi-generator generate -g typescript-angular -o projects/bungie-api/src/lib -i https://raw.githubusercontent.com/WorthyD/api/master/openapi-2.json --skip-validate-spec"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.2.4",
"@angular/cdk": "~12.2.4",
"@angular/common": "~12.2.4",
"@angular/compiler": "~12.2.4",
"@angular/core": "~12.2.4",
"@angular/forms": "~12.2.4",
"@angular/material": "~12.2.4",
"@angular/platform-browser": "~12.2.4",
"@angular/platform-browser-dynamic": "~12.2.4",
"@angular/router": "~12.2.4",
"@angular/service-worker": "~12.2.4",
"@netlify-builder/deploy": "~3.0.0",
"@ngrx/effects": "^12.4.0",
"@ngrx/entity": "^12.4.0",
"@ngrx/router-store": "^12.4.0",
"@ngrx/store": "^12.4.0",
"@ngrx/store-devtools": "^12.4.0",
"apexcharts": "^3.27.1",
"bootstrap": "^4.4.1",
"browserify-cipher": "^1.0.1",
"bungie-api-angular": "^0.4.2",
"calendar-graph": "^1.0.0",
"core-js": "^2.5.4",
"d3": "^5.16.0",
"idb": "^4.0.5",
"ng-apexcharts": "^1.5.12",
"ngx-logger": "^4.1.9",
"rxjs": "~6.5.4",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.4",
"@angular/cli": "~12.2.4",
"@angular/compiler-cli": "~12.2.4",
"@angular/language-service": "~12.2.4",
"@babel/core": "^7.8.3",
"@netlify-builder/deploy": "^3.0.0",
"@openapitools/openapi-generator-cli": "0.0.9-4.0.0-beta3",
"@storybook/addon-controls": "^6.3.9",
"@storybook/addon-essentials": "^6.3.9",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/angular": "^6.3.9",
"@storybook/builder-webpack5": "^6.4.0-beta.3",
"@storybook/preset-scss": "^1.0.3",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.20.26",
"babel-loader": "^8.0.6",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.2.1",
"protractor": "~7.0.0",
"replace-in-file": "^5.0.2",
"standard-version": "^8.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5",
"webpack-bundle-analyzer": "^3.9.0"
}
}