-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
134 lines (134 loc) · 5.53 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
124
125
126
127
128
129
130
131
132
133
134
{
"name": "ngx-tethys",
"version": "18.1.0",
"license": "MIT",
"engines": {
"node": ">=18.19.0",
"npm": ">=7",
"yarn": "Please use npm instead of yarn to install dependencies"
},
"scripts": {
"ng": "ng",
"start": "docgeni serve --configuration development",
"serve": "docgeni serve --configuration development",
"build:demo": "npm run build-site",
"build:site": "npm run build-site",
"build-site": "npm run build-docs && ng build site --configuration production --base-href=/ngx-tethys/",
"build-clean-site": "npm run build-docs && ng build site --configuration production",
"build-docs": "docgeni build --skip-site --progress false",
"build": "npm run build-cdk && npm run build-tethys && npm run build:schematics",
"build-tethys": "rimraf ./dist/tethys/* && node --max-old-space-size=8096 ./node_modules/@angular/cli/bin/ng build ngx-tethys --configuration production && npm run copy-md && npm run build-testing",
"build-styles": "cpx \"./src/**/*.scss\" dist/tethys",
"copy-md": "cpx \"./README.md\" dist/tethys && cpx \"./CHANGELOG.md\" dist/tethys",
"build-testing": "cpx \"./src/core/testing/**/*.ts\" ./dist/tethys/core/testing",
"build-cdk": "ng build cdk --configuration production",
"release-only": "wpm release",
"release": "wpm release --release-branch-format release-auto-v{{version}}",
"release-next": "wpm release --release-branch-format release-auto-next-v{{version}}",
"release-manual": "wpm release",
"release-next-manual": "wpm release --release-branch-format release-next-v{{version}}",
"admin-release": "wpm release --skip.branch --skip.push",
"pub-only": "npm run pub-tethys-only && npm run pub-cdk-only",
"pub-cdk-only": "cd dist/cdk && npm publish",
"pub-tethys-only": "cd dist/tethys && npm publish",
"pub": "wpm publish && npm run pub-only",
"pub-next-only": "npm run pub-next-tethys-only && npm run pub-next-cdk-only",
"pub-next-cdk-only": "cd ./dist/cdk && npm publish --tag next",
"pub-next-tethys-only": "cd ./dist/tethys && npm publish --tag next",
"pub-next": "wpm publish && npm run pub-next-only",
"test": "npm run test-tethys && npm run test-schematics",
"test-tethys": "ng test ngx-tethys",
"test-cdk": "ng test cdk",
"report-coverage": "cat ./coverage/tethys/lcov.info | coveralls",
"lint": "ng lint ngx-tethys && ng lint cdk",
"lint-fix": "ng lint cdk --fix && ng lint ngx-tethys --fix",
"pretty": "pretty-quick --staged",
"e2e": "ng e2e",
"serve-demo": "http-server dist/site -p 8888 -g &",
"build:schematics": "tsc -p ./schematics && npm run copy:schematics",
"copy:schematics": "cpx \"./schematics/**/*.{json,template}\" ./dist/tethys/schematics/ -v",
"test-schematics": "TS_NODE_PROJECT=./schematics/tsconfig.json node --require ts-node/register/transpile-only ./node_modules/jasmine/bin/jasmine './schematics/**/*.spec.ts'",
"prettier-all": "prettier --write \"./src/**/*.ts\"",
"prettier-schematics": "prettier --write \"./schematics/**/*.ts\"",
"prepublishOnly": "./scripts/pre-publish.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/atinc/ngx-tethys.git"
},
"description": "Angular UI Components",
"keywords": [
"Angular",
"Angular 2+"
],
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/cdk": "^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",
"@ngx-translate/core": "^15.0.0",
"core-js": "^3.24.1",
"date-fns": "^2.6.0",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular-devkit/core": "^18.2.0",
"@angular-devkit/schematics": "^18.2.0",
"@angular-eslint/builder": "^18.3.0",
"@angular-eslint/eslint-plugin": "^18.3.0",
"@angular-eslint/eslint-plugin-template": "^18.3.0",
"@angular-eslint/schematics": "^18.3.0",
"@angular-eslint/template-parser": "^18.3.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@angular/language-service": "^18.2.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^18.6.1",
"@schematics/angular": "^18.2.0",
"@docgeni/cli": "2.4.0-next.6",
"@docgeni/template": "2.4.0-next.6",
"@tethys/icons": "1.4.50",
"@types/highlight.js": "^9.12.4",
"@types/jasmine": "~2.8.6",
"@types/node": "^22.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@worktile/pkg-manager": "^0.1.0",
"chalk": "^2.4.2",
"concurrently": "^3.6.0",
"conventional-changelog-cli": "^2.0.29",
"coveralls": "^3.0.6",
"cpx": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^8.0.1",
"http-server": "^14.1.1",
"husky": "^2.4.1",
"jasmine": "~4.0.0",
"jasmine-core": "~4.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"npm-run-all": "^4.1.2",
"ng-packagr": "^18.2.0",
"prettier": "^3.3.3",
"pretty-quick": "~4.0.0",
"prettier-eslint": "^16.3.0",
"readline-sync": "^1.4.9",
"replace": "^1.1.0",
"semver": "^7.5.2",
"ts-node": "~10.9.1",
"typescript": "~5.4.5"
}
}