-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 943 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": "root",
"type": "module",
"version": "0.0.0",
"private": false,
"license": "MIT",
"scripts": {
"build:all": "pnpm --filter=\"svg-sketchy*\" run build",
"build:docs": "pnpm --filter=\"svg-sketchy.client\" run build",
"dev": "pnpm --filter=\"svg-sketchy*\" run dev",
"dev:docs": "pnpm --filter=\"svg-sketchy.client\" run dev",
"lint": "eslint .",
"test": "vitest --watch=false --config ./vitest.config.ts",
"test:watch": "vitest --watch --config ./vitest.config.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@changesets/cli": "^2.27.2",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"eslint": "^8.0.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"vitest": "^1.4.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}