-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 3.45 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
{
"name": "cli-tools",
"private": true,
"version": "1.0.0-23",
"author": "Coveo",
"bin": {
"coveo": "./bin/run"
},
"license": "Apache-2.0",
"bugs": "https://github.com/coveo/cli/issues",
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "5.1.1",
"@commitlint/config-conventional": "17.8.1",
"@commitlint/lint": "17.8.1",
"@coveo/platform-client": "52.6.1",
"@coveo/semantic-monorepo-tools": "2.4.20",
"@coveord/release": "1.0.0",
"@npmcli/arborist": "6.5.1",
"@nrwl/cli": "latest",
"@nrwl/workspace": "latest",
"@types/node": "18.19.22",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"abortcontroller-polyfill": "1.7.5",
"async-retry": "1.3.3",
"aws-sdk": "2.1572.0",
"chai": "4.4.1",
"conventional-changelog-angular": "5.0.13",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"exponential-backoff": "3.1.1",
"fs-extra": "11.2.0",
"gts": "3.1.1",
"husky": "8.0.3",
"isomorphic-fetch": "3.0.0",
"lint-staged": "13.3.0",
"moment": "2.30.1",
"npm-registry-fetch": "^14.0.2",
"oclif": "3.4.3",
"octokit": "2.1.0",
"patch-package": "6.5.1",
"prettier": "2.8.8",
"rimraf": "4.4.1",
"semver": "7.6.0",
"ts-dedent": "2.2.0",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"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",
"test:ci:snap": "nx run-many --target=test:ci:snap --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": "npm run nx:graph && npm run release:phase0 && npm run release:phase1 && npm run release:phase2",
"release:git": "npx -p=@coveord/release git-publish-all",
"release:github": "npx -p=@coveord/release github-publish",
"nx:graph": "nx graph --file=topology.json",
"release:phase0": "npx -p=@coveord/release git-lock",
"release:phase1": "npm run build && nx run-many --target=release:phase1 --all --parallel=false --output-style=stream && npx -p=@coveord/release reify",
"release:phase2": "npx -p=@coveord/release is-cli-release"
},
"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/*"
]
}