-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.19 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.19 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
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": "nova-angular-project",
"version": "6.0.2",
"description": "Visa Product Design System Nova Angular Project",
"license": "Apache-2.0",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:docs": "ng build workshop --configuration production",
"build:lib": "ng build @visa/nova-angular --configuration production",
"watch": "ng build @visa/nova-angular --watch --configuration development",
"test": "jest",
"test:coverage": "jest --coverage",
"test:docs": "jest --config projects/workshop/jest.config.ts",
"test:docs:watch": "jest --config projects/workshop/jest.config.ts --watchAll",
"test:lib": "jest --config projects/nova-angular/jest.config.ts",
"test:lib:watch": "jest --config projects/nova-angular/jest.config.ts --watchAll",
"test:watch": "jest --watchAll",
"test:lib:coverage": "jest --config projects/nova-angular/jest.config.ts --coverage",
"api:docs": "compodoc -p projects/workshop/tsconfig.app.json --hideGenerator -e json -d projects/workshop/public/app/workshop",
"api:lib": "compodoc -p projects/nova-angular/tsconfig.lib.json --hideGenerator -e json -d projects/workshop/public/lib/nova",
"api": "pnpm api:lib && pnpm api:docs",
"preinstall": "npx only-allow pnpm",
"prettier:docs:write": "prettier --config ./.prettierrc --check --write \"projects/workshop/src/app/components/*/*/*{.ts,.html}\"",
"release": "standard-version && pnpm copy:changelog",
"release:minor": "standard-version --release-as minor && pnpm copy:changelog",
"release:patch": "standard-version --release-as patch && pnpm copy:changelog",
"generate:metadata": "node bin/metadata/create-meta-data",
"generate-routes": "node bin/route-gen.mjs",
"generate:stats": "node bin/stats/size-analytics.mjs",
"generate:themes": "node bin/generate-themes.mjs",
"test:coverage:watch": "npx jest nova-lib --coverage --watchAll",
"test:serve": "cd coverage/lcov-report && npx http-serve",
"copy:changelog": "cp CHANGELOG.md projects/workshop/public/lib/nova/CHANGELOG.md",
"prepare": "pnpm generate-routes && pnpm generate:themes && pnpm api && is-ci || husky",
"license:update": "npx @visa/scripts@4.1.2 license"
},
"prettier": {
"overrides": [
{
"files": "*.html",
"options": {
"parser": "html"
}
}
]
},
"dependencies": {
"@angular/cdk": "^20.0.5",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/router": "^20.0.0",
"@floating-ui/dom": "^1.7.2",
"@visa/nova-icons-angular": "^3.0.0",
"@visa/nova-styles": "1.6.4",
"change-case": "^5.4.4",
"clipboard": "^2.0.11",
"dompurify": "^3.2.6",
"marked": "^15",
"ngx-clipboard": "^16.0.0",
"ngx-google-analytics": "^14.0.1",
"ngx-markdown": "^20",
"prismjs": "^1.29.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-builders/jest": "^20.0.0",
"@angular/build": "^20.0.5",
"@angular/cli": "^20.0.5",
"@angular/compiler-cli": "^20.0.0",
"@compodoc/compodoc": "1.1.26",
"@floating-ui/core": "^1.7.2",
"@floating-ui/utils": "^0.2.10",
"@testing-library/angular": "^17.3.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29",
"@types/jest-axe": "^3.5.9",
"@types/node": "^24.0.10",
"chokidar": "^4",
"glob": "^10.4.5",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jest": "^29",
"jest-axe": "^10",
"jest-preset-angular": "^14.6.0",
"ng-packagr": "^20.0.0",
"prettier": "^3.4.1",
"standard-version": "^9.5.0",
"typescript": "~5.8.2"
},
"overrides": {
"@babel/types": "7.28.2",
"@babel/helpers": "7.28.2",
"@babel/core": "7.28.2"
},
"engines": {
"node": ">=18.15.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.12.0",
"keywords": [
"angular",
"design system",
"javascript",
"nova",
"typescript",
"ui",
"visa",
"visa design",
"visa design system"
]
}