-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.66 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.66 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
{
"name": "apollo-ui",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Apollo v.4 Design System - UiPath's open-source component library",
"repository": {
"type": "git",
"url": "https://github.com/UiPath/apollo-ui.git"
},
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"build:apps": "turbo run build --filter='./apps/*'",
"build:analyze": "turbo run build:analyze",
"check:dependencies": "check-dependency-version-consistency .",
"commit": "git-cz",
"dev": "turbo run dev",
"dev:react-playground": "turbo run dev --filter=react-playground",
"dev:chat": "turbo run dev --filter=@uipath/ap-chat",
"dev:apollo-vertex": "turbo run dev --filter=apollo-vertex",
"dev:apollo-docs": "turbo run dev --filter=apollo-docs",
"fix:dependencies": "check-dependency-version-consistency . --fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:css": "turbo run lint:css",
"lint:css:fix": "turbo run lint:css:fix",
"lint:deps": "turbo run lint:deps",
"format": "turbo run format",
"format:check": "turbo run format:check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test:visual": "turbo run test:visual",
"typecheck": "turbo run typecheck",
"storybook:dev": "turbo run storybook",
"storybook:build": "turbo run storybook:build",
"storybook:design": "turbo run storybook --filter=storybook-app",
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
"release": "pnpm --workspace-concurrency=1 --sort --filter './packages/*' --filter './web-packages/*' exec -- semantic-release",
"release:dry-run": "pnpm --workspace-concurrency=1 --sort --filter './packages/*' --filter './web-packages/*' exec -- semantic-release --dry-run",
"publish:dev": "tsx scripts/publish-dev.ts",
"unpublish:dev": "tsx scripts/unpublish-dev.ts",
"notifyUpdates": "tsx scripts/notify-vertex-updates.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@commitlint/config-pnpm-scopes": "^20.1.0",
"@commitlint/cz-commitlint": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.5",
"check-dependency-version-consistency": "^6.0.0",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"semantic-release": "^25.0.3",
"semantic-release-monorepo": "^8.0.2",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-tailwindcss": "^1.0.0",
"tsx": "^4.20.6",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.18.1",
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"biome check --write --no-errors-on-unmatched"
],
"*.css": [
"stylelint --fix"
],
"packages/**/*.{js,jsx,ts,tsx}": [
"sh -c 'turbo run test --filter=[HEAD]'"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"pnpm": {
"overrides": {
"minimatch": "^10.2.3",
"lodash": "^4.18.1",
"tmp": "^0.2.4",
"picomatch": ">=4.0.4",
"flatted": ">=3.4.2",
"@xmldom/xmldom": ">=0.9.9",
"hono": ">=4.12.14"
}
}
}