-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·120 lines (120 loc) · 4.31 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@bimeister/pupakit",
"version": "#.#.#",
"private": true,
"description": "Root package.json contains only scripts",
"license": "Apache-2.0",
"homepage": "https://github.com/bimeister/pupakit",
"repository": {
"type": "git",
"url": "https://github.com/bimeister/pupakit"
},
"bugs": {
"url": "https://github.com/bimeister/pupakit/issues",
"email": "[email protected]"
},
"engines": {
"node": "^18.0.0",
"npm": ">=8.0.0"
},
"packageManager": "[email protected]",
"workspaces": [
"projects/*"
],
"scripts": {
"autofix": "npm run linter:fix",
"barrel:all": "moon run :barrel",
"build:all": "moon run :build",
"build:common": "moon run common:build",
"build:demo": "moon run demo:build",
"build:demo-ci": "moon run demo:build -- --base-href \"${CI_PAGES_URL}/\"",
"build:demo-stage": "moon run demo:build -- --base-href #",
"build:icons": "moon run icons:build",
"build:kit": "moon run kit:build",
"build:overlays": "moon run overlays:build",
"build:table": "moon run table:build",
"build:tree": "moon run tree:build",
"build:widgets": "moon run widgets:build",
"build:dnd": "moon run dnd:build",
"build:prepublish": "ts-node do-prepublish.ts",
"formatter:check": "moon run :format-check",
"formatter:fix": "moon run :format-fix",
"linter:check-ci": "moon run :lint -- --configuration=inspection-ci",
"linter:fix": "moon run :lint -- --configuration=debugging",
"linter:spell-checker": "moon run :spell-check",
"moon": "moon",
"start": "ng serve demo",
"start:non-strict": "ng serve demo --configuration=non-strict",
"styling:all": "moon run common:style-all",
"styling:alpha-color-maps": "moon run common:style-alpha-colors-map",
"styling:color-maps": "moon run common:style-colors-map",
"styling:convert-scss-to-css": "moon run common:convert-scss-to-css",
"styling:visualization-color-maps": "moon run common:style-visualization-colors-map",
"styling:semantic-color-maps": "moon run common:style-semantic-colors-map",
"styling:variables": "moon run common:style-variables",
"constantize:all": "moon run common:const-all",
"constantize:visualization-colors": "moon run common:const-visualization-colors",
"test:ci": "moon run :test-ci",
"test:debug": "moon run :test-debug"
},
"dependencies": {
"@angular/cdk": "17.3.10",
"@bimeister/event-bus": "1.1.0",
"@bimeister/utilities": "1.3.2-next.sha.e5a7f637",
"@types/hammerjs": "^2.0.40",
"rxjs": "^6.6.0",
"tslib": "2.6.2",
"zone.js": "0.14.6"
},
"devDependencies": {
"@angular-builders/jest": "17.0.3",
"@angular-devkit/build-angular": "17.3.8",
"@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/animations": "17.3.10",
"@angular/cli": "17.3.8",
"@angular/common": "17.3.10",
"@angular/compiler": "17.3.10",
"@angular/compiler-cli": "17.3.10",
"@angular/core": "17.3.10",
"@angular/forms": "17.3.10",
"@angular/language-service": "17.3.10",
"@angular/platform-browser": "17.3.10",
"@angular/platform-browser-dynamic": "17.3.10",
"@angular/router": "17.3.10",
"@babel/core": "7.17.2",
"@moonrepo/cli": "0.23.4",
"@types/jest": "^27.0.0",
"@types/node": "^16.10.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"babel-loader": "^8.1.0",
"barrelsby": "^2.2.0",
"cspell": "8.8.3",
"cspell-dict-lorem-ipsum": "^1.1.2",
"cspell-dict-russian": "^1.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "latest",
"eslint-plugin-ban": "latest",
"eslint-plugin-deprecation": "latest",
"eslint-plugin-editorconfig": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-prettier": "latest",
"hammerjs": "^2.0.8",
"jest": "^29.6.2",
"jest-junit": "^12.0.0",
"ng-packagr": "^16.1.0",
"ngx-highlightjs": "^5.0.0",
"prettier": "^2.4.1",
"randombytes": "^2.1.0",
"rxjs": "^6.6.0",
"sass": "^1.26.10",
"ts-node": "^10.9.1",
"typescript": "5.4.5"
}
}