-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "@checkly/cli-monorepo",
"private": true,
"version": "0.0.1",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run prepack --workspaces",
"prepare": "npx simple-git-hooks && npm run prepare --workspaces && npm run prepare:ai-context",
"clean:ai-context": "rimraf skills",
"prepare:ai-context": "npm run clean:ai-context && cp -r packages/cli/dist/ai-context/public-skills/. skills",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e --workspaces"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin": "5.2.2",
"eslint": "^9.32.0",
"globals": "16.0.0",
"lint-staged": "^15.5.1",
"rimraf": "5.0.10",
"simple-git-hooks": "^2.12.1",
"typescript-eslint": "8.30.0"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,mjs}": "npm run lint"
}
}