-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 938 Bytes
/
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
{
"name": "@checkly/cli-monorepo",
"private": true,
"version": "0.0.1",
"scripts": {
"lint": "eslint . --ext .ts,.js,.mjs",
"lint:fix": "eslint . --ext .ts,.js,.mjs --fix",
"prepack": "npm run prepack --workspaces",
"prepare": "npx simple-git-hooks && npm run prepare --workspaces",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e --workspaces"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@checkly/eslint-config": "0.16.1",
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.48.0",
"lint-staged": "13.2.3",
"simple-git-hooks": "2.8.1"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,mjs}": "npm run lint"
}
}