-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.7 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.7 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
{
"name": "@visa/nova-react-project",
"version": "3.0.0",
"description": "VISA Product Design System Nova React Library",
"scripts": {
"api:json": "node ./bin/format-docs.mjs && cp ./libs/nova-react/dist/api.json ./api.json",
"build": "pnpm -r build",
"build:docs": "pnpm --filter ./apps/workshop run build",
"build:lib": "pnpm --filter ./libs/nova-react run build",
"dev": "pnpm -r --parallel dev",
"dev:docs": "pnpm --filter ./apps/workshop run dev",
"dev:lib": "pnpm --filter ./libs/nova-react run dev",
"lint": "eslint --fix --max-warnings 0",
"prebuild": "pnpm prebuild:lib && pnpm build:lib && pnpm test:coverage && pnpm prebuild:docs",
"prebuild:docs": "pnpm --parallel --filter ./apps/workshop run prebuild && node ./bin/global-meta-gen.mjs",
"prebuild:lib": "pnpm --filter ./libs/nova-react run prebuild",
"prepare": "is-ci || husky && pnpm prebuild",
"prepush": "pnpm lint && pnpm build",
"presecurity": "node ./bin/pre-security-scan.mjs",
"postsecurity": "node ./bin/post-security-scan.mjs",
"release": "standard-version",
"test": "jest",
"test:coverage": "jest --coverage . && node ./bin/jest-average-reporter.mjs",
"test:watch": "jest --watch",
"upgrade:packages": "pnpm upgrade -r",
"license:update": "npx @visa/scripts license"
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9.0.6",
"repository": {
"type": "git",
"url": "https://github.com/visa/nova-react.git"
},
"keywords": [
"design system",
"JS",
"nova",
"react",
"rollup",
"typescript",
"UI",
"vds",
"visa product design system",
"visa design system",
"visa design",
"vite"
],
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@babel/parser": "7.26.3",
"@babel/traverse": "7.26.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "9.17.0",
"@testing-library/jest-dom": "^6.4.5",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.9",
"@visa/nova-icons-react": "^2.0.4",
"@visa/scripts": "^4.1.0",
"change-case": "^5.0.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "7.37.2",
"glob": "^10.3.14",
"globals": "^16.0.0",
"husky": "^9.0.11",
"is-ci": "^4.1.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.0",
"ts-jest-mock-import-meta": "^1.3.1",
"typescript-eslint": "^8.42.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"typescript": "^5.9.2"
},
"workspaces": [
"apps/*",
"libs/*"
]
}