forked from cds-snc/gcds-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.51 KB
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
{
"name": "gcds-components-repo",
"version": "0.1.13",
"description": "GCDS components repo",
"private": true,
"scripts": {
"ng": "ng",
"compile": "gulp compile",
"build": "npm run build:angular-output-target && npm run build:web && npm run build:vue && npm run build:angular && npm run build:react",
"build:angular-output-target": "npm run build -w utils/angular-output-target",
"build:web": "npm run build -w @gcds-core/components",
"build:vue": "npm run build -w @gcds-core/components-vue",
"build:angular": "ng build @gcds-core/components-angular",
"build:react": "npm run build -w @gcds-core/components-react",
"test": "npm run test --workspace=utils/angular-output-target --workspace=packages/web --workspace=packages/react --workspace=packages/vue && npm run test:angular",
"test:unit": "npm run test:angular:unit && npm run pretest:web && npm run test:unit --workspace=packages/web",
"test:visual": "npm run test:visual -w @gcds-core/components",
"pretest:web": "npm run patch:stenciljs",
"pretest:web:unit": "npm run patch:stenciljs",
"pretest:angular": "npm i --prefix packages/angular/tests/app && npm run build:web",
"test:web:unit": "npm run test:unit --workspace=packages/web",
"test:web:e2e": "npm run test:e2e --workspace=packages/web",
"test:web:watch": "npm run test:watch --workspace=packages/web",
"test:web:coverage": "npm run test:coverage --workspace=packages/web",
"test:angular": "playwright test -c packages/angular/playwright.config.ts",
"test:angular:unit": "jest --config=packages/angular/jest.config.js",
"test:angular:unit:watch": "jest --config=packages/angular/jest.config.js --watch",
"test:angular:unit:ci": "jest --config=packages/angular/jest.config.js --ci",
"test:angular:unit:coverage": "jest --config=packages/angular/jest.config.js --coverage",
"test:react": "npm run test --workspace=packages/react",
"test:vue": "npm run test --workspace=packages/vue",
"build-storybook": "npm run build-storybook -w @gcds-core/components",
"start-storybook": "npm run storybook -w @gcds-core/components",
"patch:stenciljs": "npx --yes patch-package",
"unpatch:stenciljs": "npx --yes -p patch-package -c 'patch-package --reverse'",
"start": "npm run start -w @gcds-core/components",
"docs:diagram": "npm run docs:diagram -w @gcds-core/components"
},
"dependencies": {
"@angular/animations": "^19.2.15",
"@angular/common": "^19.2.15",
"@angular/compiler": "^19.2.15",
"@angular/core": "^19.2.18",
"@angular/forms": "^19.2.15",
"@angular/platform-browser": "^19.2.15",
"@angular/platform-browser-dynamic": "^19.2.15",
"@angular/router": "^19.2.15",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.20",
"@angular/cli": "~19.2.15",
"@angular/compiler-cli": "^19.2.15",
"@angular/platform-browser": "^19.2.15",
"@angular/platform-browser-dynamic": "^19.2.15",
"@playwright/test": "^1.52.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"cssnano": "^6.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.4.2",
"ng-packagr": "^19.0.1",
"nx": "^16.0.0",
"sass": "^1.43.5",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2",
"workbox-build": "^7.0.0"
},
"peerDependencies": {
"zone.js": "^0.15.0"
},
"workspaces": [
"utils/angular-output-target",
"packages/web",
"packages/react",
"packages/vue",
"packages/angular"
],
"license": "MIT"
}