-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "kavach",
"version": "1.0.0-next.27",
"description": "Drop in authentication including route protection and redirects.",
"main": "index.js",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"clean": "find . -name 'coverage' -o -name 'vitest*timestamp*' -o -name '.vercel' | xargs rm -rf",
"prepublishOnly": "turbo run prepublishOnly",
"build": "turbo run build",
"test": "turbo run test:ci",
"coverage": "turbo run coverage",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky",
"latest": "pnpm upgrade --latest && turbo run latest",
"check-git": "if [ -n \"$(git status --porcelain)\" ]; then echo 'You have uncommitted changes or untracked files.' && exit 1; fi",
"bump": "pnpm check-git && bumpp",
"bump:next": "pnpm check-git && bumpp --preid=next",
"release": "turbo run release",
"upgrade:all": "./scripts/upgrade.sh && pnpm upgrade --latest",
"coverage:lcov": "pnpm coverage && ./scripts/merge-lcov.sh"
},
"author": "Jerry Thomas<[email protected]",
"license": "MIT",
"workspaces": [
"packages/*",
"adapters/*",
"shared/*"
],
"devDependencies": {
"@jerrythomas/prettier-config": "^1.0.2",
"bumpp": "9.3.1",
"eslint": "^8.57.0",
"eslint-config-shared": "workspace:*",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"turbo": "^1.13.3"
},
"lint-staged": {
"*.{js,svelte}": "eslint --cache --fix",
"*.{js,svelte,md,json}": "prettier --write"
}
}