-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
34 lines (34 loc) · 1.03 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
{
"name": "hattip-workspace-root",
"private": "true",
"scripts": {
"dev": "pnpm -r --parallel --filter=\"./packages/*/*\" run dev",
"build": "pnpm -r --filter=\"./packages/*/*\" run build",
"prepare": "husky install",
"precommit": "lint-staged",
"test": "pnpm run \"/^(cq|ci)$/\"",
"cq": "pnpm run /^test:/",
"ci": "cross-env CI=true pnpm -r --stream run ci",
"test:packages": "pnpm -r --stream run test",
"test:prettier": "prettier --check --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml' '!testbed/basic/fastly'",
"format": "prettier --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml' '!testbed/basic/fastly' --write"
},
"pnpm": {
"overrides": {
"graphql": "$graphql"
}
},
"devDependencies": {
"cross-env": "^7.0.3",
"graphql": "^16.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"dependencies": {
"typescript": "^5.6.3"
}
}