-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
101 lines (101 loc) · 3.88 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
98
99
100
101
{
"name": "automate-ui",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"watch": "ng build --watch --configuration development",
"serve:hab": "echo '*** Please ignore the message to go to http://localhost:4200 -- the correct URL is https://a2-dev.test/ ***' && ng serve --host 0.0.0.0 --disable-host-check --public-host=httpfake://0.0.0.0:0/ --ssl-key ../../dev/certs/automate-ui.key --ssl-cert ../../dev/certs/automate-ui.crt --live-reload false --poll 1000",
"install": "echo 'use `npm run install:ui-library` for old behaviour'",
"install:ui-library": "npm run clean-ui-lib && scripts/build_chef_ui_lib && npm run copy-ui-lib",
"clean-ui-lib": "rm -rf src/assets/chef-ui-library",
"copy-ui-lib": "npm run copy-ui-lib:library && npm run copy-ui-lib:fonts",
"copy-ui-lib:library": "cp -r ../chef-ui-library/dist/ src/assets/chef-ui-library",
"copy-ui-lib:fonts": "cp -r ../chef-ui-library/dist/collection/assets/fonts/ src/assets/fonts",
"build": "ng build",
"build:prod": "npm run build",
"test": "scripts/build.sh 'ng test --watch=false --code-coverage --source-map=false' 'WARN:'",
"test:watch": "ng test --watch=true --browsers='Chrome' --source-map=true",
"e2e": "ng e2e --no-webdriver-update",
"lint": "scripts/build.sh 'ng lint' 'WARNING:'",
"lint:html": "node_modules/htmlhint/bin/htmlhint --config .htmlhintrc src/app/**/*.html",
"lint:sass": "stylelint 'src/**/*.scss' --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/cdk": "^17.3.5",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/localize": "^17.3.0",
"@angular/material": "^17.3.5",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/platform-server": "^17.3.0",
"@angular/router": "^17.3.0",
"@carbon/grid": "^11.22.0",
"@ng-select/ng-select": "^12.0.7",
"@ngrx/effects": "^17.2.0",
"@ngrx/entity": "^17.2.0",
"@ngrx/router-store": "^17.2.0",
"@ngrx/store": "^17.2.0",
"@ngrx/store-devtools": "^17.2.0",
"broadcast-channel": "^7.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^3.37.0",
"d3": "^7.9.0",
"diff2html": "^3.4.48",
"file-saver": "^2.0.5",
"fp-ts": "^2.16.5",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"ngx-cookie": "^6.0.1",
"ngx-infinite-scroll": "^17.0.0",
"process": "^0.11.10",
"rrule": "^2.8.1",
"rxjs": "~7.8.0",
"sniffr": "^1.3.2",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/cli": "^17.3.5",
"@angular/compiler-cli": "^17.3.0",
"@angular/language-service": "^17.3.5",
"@types/jasmine": "~5.1.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"ajv": "^8.16.0",
"ansi-regex": "^6.0.1",
"eslint": "^8.57.0",
"htmlhint": "^1.1.4",
"install": "^0.13.0",
"jasmine-core": "~5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"jsprim": "^2.0.2",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-safari-launcher": "^1.0.0",
"ng2-mock-component": "^0.2.0",
"rxjs-spy": "^8.0.2",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.8.1",
"typescript": "~5.4.2"
}
}