-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "trpc-swr-mono",
"version": "1.0.0",
"description": "Monorepo of trpc-swr",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "8.0.3",
"nano-staged": "0.8.0",
"prettier": "^2.8.8",
"turbo": "^1.10.6"
},
"scripts": {
"prepare": "husky install",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"typecheck": "turbo run typecheck",
"test": "turbo run test --filter={test/**}",
"test:e2e": "turbo run test:e2e",
"prepublishOnly": "turbo run build --filter=packages*",
"prerelease": "turbo run build --filter=./packages/*",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run prerelease && changeset publish"
},
"pnpm": {
"overrides": {
"@swc/helpers": "latest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sannajammeh/trpc-swr.git"
},
"keywords": [],
"author": "Sanna Jammeh",
"license": "MIT",
"bugs": {
"url": "https://github.com/sannajammeh/trpc-swr/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"homepage": "https://github.com/sannajammeh/trpc-swr#readme",
"engines": {
"node": ">=18"
}
}