-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 3.21 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
{
"name": "cli-tools",
"private": true,
"version": "1.0.0-18",
"author": "Coveo",
"bin": {
"coveo": "./bin/run"
},
"license": "Apache-2.0",
"bugs": "https://github.com/coveo/cli/issues",
"devDependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@commitlint/config-conventional": "17.6.1",
"@commitlint/lint": "17.6.1",
"@coveo/platform-client": "46.0.0",
"@coveo/semantic-monorepo-tools": "2.1.2",
"@coveord/release": "1.0.0",
"@npmcli/arborist": "7.0.0",
"@nrwl/cli": "latest",
"@nrwl/workspace": "latest",
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"abortcontroller-polyfill": "1.7.5",
"async-retry": "1.3.3",
"aws-sdk": "2.1368.0",
"chai": "4.3.7",
"conventional-changelog-angular": "7.0.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.3",
"eslint": "8.39.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"exponential-backoff": "3.1.1",
"fs-extra": "11.1.1",
"gts": "5.0.1",
"husky": "8.0.3",
"isomorphic-fetch": "3.0.0",
"lint-staged": "14.0.1",
"moment": "2.29.4",
"npm-registry-fetch": "^16.0.0",
"oclif": "3.4.3",
"octokit": "3.1.0",
"patch-package": "8.0.0",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"semver": "7.5.2",
"ts-dedent": "2.2.0",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"yargs": "17.7.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": [
"cli"
]
}
},
"lint-staged": {
"*.{ts,tsx,mjs,js,jsx,json,html,vue,scss,css,md,yml}": "prettier --write",
"**/*.ts": "eslint --fix"
},
"engines": {
"node": ">=18",
"npm": ">=8.5.4"
},
"engineStrict": true,
"scripts": {
"clean": "rimraf package-lock.json node_modules",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all && prettier --ignore-path .ci.prettierignore --check . && eslint .",
"commit": "git-cz",
"pr:report": "node ./scripts/pr-bot.js",
"npm:publish:template": "nx run-many --target=npm:publish:template --all",
"prepare": "husky install",
"commit-msg": "node ./hooks/commit-msg.js",
"pre-commit": "lint-staged",
"postinstall": "patch-package && nx run-many --target=postinstall --all",
"release": "npm run nx:graph && npm run release:phase0 && npm run release:phase1 && npm run release:phase2",
"nx:graph": "nx graph --file=topology.json",
"release:phase0": "npx -p=@coveord/release git-lock",
"release:phase1": "nx run-many --target=release:phase1 --all --parallel=false --output-style=stream",
"release:phase2": "npx -p=@coveord/release git-publish-all"
},
"workspaces": [
"packages/*",
"packages/ui/*",
"packages/ui/atomic/*",
"packages/ui/atomic/*/template/*",
"packages/ui/vue/create-headless-vue",
"packages/ui/vue/create-headless-vue/template",
"packages/cli/*",
"utils/*"
]
}