-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "next-sanity-mono",
"private": true,
"author": {
"email": "[email protected]",
"name": "Dave Stockley",
"url": "https://spon.io"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:magicspon/sanity-next-mono.git"
},
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo dev --filter=web",
"start": "turbo start --filter=web",
"start:ci": "INSECURE_AUTH=true turbo run start",
"build": "turbo build --filter=web",
"deploy": "cd apps/cms; pnpm run deploy",
"new:component": "hygen new component",
"new:fn": "hygen new fn",
"new:hook": "hygen new hook",
"clean:workspaces": "turbo clean",
"clean": "rm -rf node_modules",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"lint": "turbo lint && manypkg check",
"format": "prettier --write \"**/*.{ts,tsx,md,json,css}\"",
"prepare": "husky install",
"storybook": "turbo run storybook --filter=ui",
"build-storybook": "turbo run build-storybook --filter=ui",
"version": "pnpm changeset version; pnpm i"
},
"dependencies": {
"@changesets/cli": "^2.27.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@manypkg/cli": "^0.21.4",
"commitlint": "^19.3.0",
"commitlint-config-gitmoji": "^2.3.1",
"husky": "^9.0.11",
"hygen": "^6.2.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^1.13.3",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=3"
},
"quokka": {
"babel": {
"env": "test",
"polyfill": false
},
"installPackageCommand": "pnpm add {packageName}",
"env": {
"params": {
"env": "NODE_ENV=test"
}
}
}
}