-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "gradient-blob-monorepo",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"description": "monorepo for gradient-blob",
"repository": {
"type": "git",
"url": "git+https://github.com/yuvalkarif/gradient-blob.git"
},
"scripts": {
"dev": "pnpm run \"/dev:/\"",
"dev:site": "pnpm --filter site dev",
"dev:lib": "pnpm --filter gradient-blob dev",
"build": "pnpm run build:lib && pnpm run build:site",
"build:lib": "pnpm --filter gradient-blob build",
"build:site": "pnpm --filter site build",
"test:unit": "vitest",
"test:e2e": "pnpm --filter site test:e2e",
"prepare": "simple-git-hooks",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix",
"typecheck": "pnpm run \"/typecheck:/\"",
"typecheck:site": "pnpm --filter site typecheck",
"typecheck:lib": "pnpm --filter gradient-blob typecheck"
},
"devDependencies": {
"@antfu/eslint-config": "^2.15.0",
"eslint": "^9.1.1",
"lint-staged": "^15.2.5",
"simple-git-hooks": "^2.11.1",
"vitest": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}