-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.78 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
{
"name": "tableau-component-library",
"version": "0.0.0",
"workspaces": [
"projects/*"
],
"scripts": {
"start": "concurrently \"ng serve --port 4201\" \"npm run test-app:watch-icons\"",
"test-app:icons:download": "node projects/component-library/used-icons/scripts/update-icons.js projects/test-app/src/icons.ts projects/test-app/public/icons",
"test-app:watch-icons":"npm run test-app:icons:download && npx chokidar \"projects/test-app/src/icons.ts\" -c \"npm run test-app:test-app:icons:download\"",
"copy-assets": "cpy README.md LICENSE Add-Benton-Sans.md dist/component-library",
"build:component-library": "ng build component-library && npm run copy-assets",
"build:github-pages": "npm run test-app:icons:download && ng build test-app --base-href /tableau-ui-angular/",
"package": "npx ng-packagr -p projects/component-library/ng-package.json && npm run copy-assets",
"publish": "npx ng-packagr -p projects/component-library/ng-package.json && npm run copy-assets && cd dist/component-library && npm publish",
"dev:link": "ng build component-library --configuration development && node scripts/link-info.js && ng build component-library --watch --configuration development"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.7",
"@angular/cli": "^19.0.7",
"@angular/compiler-cli": "^19.0.6",
"@types/jasmine": "~5.1.0",
"cpy-cli": "^5.0.0",
"jasmine-core": "~5.4.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^19.1.0",
"typescript": "~5.5.2"
}
}