-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
123 lines (123 loc) · 4.12 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
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
121
122
123
{
"name": "ui-kit",
"private": true,
"version": "3.0.6",
"scripts": {
"postinstall": "husky install && patch-package && npx playwright install",
"reset:install": "git checkout origin/master package-lock.json && npm i",
"clean:install": "git clean -xfd && npm run reset:install",
"dev:atomic": "concurrently \"npm run -w @coveo/headless dev\" \"npm run -w @coveo/atomic start\"",
"build": "nx run-many --target=build",
"test": "nx run-many --target=test",
"e2e": "nx run-many --target=e2e",
"lint:check": "eslint . && cspell **/*.md --no-progress --show-suggestions --show-context && prettier --check '**/*.{css,pcss,html,md,yml,ts,tsx,js,mjs,json}'",
"lint:fix": "eslint --fix . && prettier --write '**/*.{css,pcss,html,md,yml,ts,tsx,js,mjs,json}'",
"package-compatibility": "node ./scripts/ci/package-compatibility.mjs",
"pr:report": "node ./scripts/reports/pr-report.mjs",
"report:bundle-size:time-series": "node ./scripts/reports/bundle-size/time-series.mjs",
"commit": "git-cz",
"pre-commit": "lint-staged",
"promote:npm:latest": "nx run-many --target=promote:npm:latest",
"notify:docs": "node ./scripts/notify-docs/published-ui-kit.mjs",
"release": "npm run nx:graph && npm run release:phase0 && npm run release:phase1 && npm run release:phase2 && npm run release:phase3",
"nx:graph": "nx graph --file=topology.json",
"release:phase0": "npm run-script -w=@coveo/release git-lock",
"release:phase1": "nx run-many --targets=release:phase1 --all --parallel=false --output-style=stream; npm run-script -w=@coveo/release bump:root",
"release:phase2": "npm run-script -w=@coveo/release reify",
"release:phase3": "npm run-script -w=@coveo/release git-publish-all",
"release:phase4": "nx run-many --targets=release:phase4 --all"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/lint": "19.6.0",
"@commitlint/load": "19.6.1",
"@coveo/release": "1.0.0",
"@cspell/dict-fr-fr": "2.2.5",
"@cspell/eslint-plugin": "8.17.1",
"@nx/web": "20.3.0",
"@octokit/rest": "21.0.2",
"@trivago/prettier-plugin-sort-imports": "5.2.0",
"@tsconfig/node20": "20.1.4",
"@types/execa": "2.0.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"aws-sdk": "2.1692.0",
"commitizen": "4.3.1",
"concurrently": "9.1.2",
"cspell": "8.17.1",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.24.2",
"esbuild-plugin-alias": "0.2.1",
"esbuild-plugin-umd-wrapper": "3.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.2",
"eslint-plugin-package-lock": "1.0.0",
"execa": "9.5.2",
"glob": "11.0.0",
"gts": "5.3.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"nx": "20.3.0",
"patch-package": "8.0.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"publint": "0.2.12",
"rimraf": "6.0.1",
"semver": "7.6.3",
"typescript": "5.5.4",
"vite": "5.4.11"
},
"overrides": {
"@coveo/release": {
"@types/async-retry": {
"@types/retry": "0.12.5"
}
}
},
"workspaces": [
"packages/bueno",
"packages/auth",
"packages/headless",
"packages/atomic",
"packages/quantic",
"packages/headless-react",
"packages/ssr",
"packages/atomic-hosted-page",
"packages/atomic-react",
"packages/atomic-angular",
"packages/atomic-angular/projects/*",
"packages/samples/*",
"packages/samples/headless-ssr/*",
"utils/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": [
"auth",
"bueno",
"headless",
"atomic",
"quantic"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "^20.9.0 || ^22.11.0",
"npm": ">=8.6.0"
},
"dependencies": {
"upgrade": "1.1.0"
},
"packageManager": "npm@11.0.0"
}