-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
123 lines (123 loc) · 4 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
121
122
123
{
"name": "libs",
"private": true,
"version": "18.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve site --port 4801",
"start:docs": "docgeni serve --port 4800",
"watch": "ng build --watch --configuration development",
"install": "lerna bootstrap",
"change": "lerna changed",
"diff": "lerna diff",
"test": "ng test lib",
"test:node": "ts-node ./node_modules/jasmine/bin/jasmine --config=jasmine.json",
"report-coverage": "cat ./coverage/tethys/lcov.info | coveralls",
"build": "npm-run-all build:libs sync-styles",
"build:docs": "docgeni build",
"build:libs": "ts-node --project ./scripts/tsconfig.json ./scripts/build-packages.ts",
"release-manual": "wpm release",
"release": "wpm release --release-branch-format release-auto-v{{version}}",
"release-next-manual": "wpm release --release-branch-format release-next-v{{version}}",
"release-next": "wpm release --release-branch-format release-auto-next-v{{version}}",
"pub-only": "ts-node --project ./scripts/tsconfig.json ./scripts/npm-publish.ts",
"pub-next-only": "ts-node --project ./scripts/tsconfig.json ./scripts/npm-publish.ts --next",
"pub": "wpm publish && yarn pub-only",
"pub-next": "wpm publish && yarn pub-next-only",
"sync-styles": "ts-node --project ./scripts/tsconfig.json ./scripts/sync-styles.ts",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint --config ./commitlint.config.js -e"
},
"engines": {
"node": ">=20.13.0",
"yarn": ">=1.21.1 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"homepage": "https://github.com/tethys-org/libs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tethys-org/libs.git"
},
"bugs": {
"url": "https://github.com/tethys-org/libs/issues"
},
"publishConfig": {},
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^18.2.0",
"@angular/cdk-experimental": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"@tethys/cdk": "18.0.0",
"@tethys/icons": "1.4.69",
"@tethys/store": "18.0.0-next.1",
"@types/extend": "^3.0.1",
"angular-gridster2": "18.0.1",
"cropperjs": "1.5.13",
"date-fns": "^2.6.0",
"extend": "^3.0.2",
"ngx-tethys": "18.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@docgeni/cli": "~2.3.0",
"@docgeni/template": "~2.3.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@worktile/pkg-manager": "^0.1.1",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.0.6",
"cpx": "^1.5.0",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^8.39.0",
"husky": "^7.0.0",
"jasmine": "^3.9.0",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^5.5.2",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"ng-packagr": "^18.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"shelljs": "0.8.4",
"typescript": "^5.5.4",
"webpack": "5.75.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"workspaces": [
"packages/*"
]
}