forked from maloguertin/msw-trpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
43
44
45
46
47
48
49
50
{
"name": "msw-trpc",
"version": "1.3.4",
"description": "Trpc API for Mock Service Worker (MSW).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"test": "tsc --noEmit && jest",
"build": "rimraf dist && tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maloguertin/msw-trpc.git"
},
"keywords": [
"msw",
"trpc",
"testing",
"api"
],
"author": "Malo Guertin",
"license": "MIT",
"bugs": {
"url": "https://github.com/maloguertin/msw-trpc/issues"
},
"homepage": "https://github.com/maloguertin/msw-trpc#readme",
"devDependencies": {
"@trpc/client": "^10.9.0",
"@trpc/react-query": "^10.9.0",
"@trpc/server": "^10.9.0",
"@types/jest": "^29.2.6",
"expect-type": "^0.15.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"msw": "^1.0.1",
"prettier": "^2.8.3",
"rimraf": "^4.1.1",
"superjson": "^1.12.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"whatwg-fetch": "^3.6.2",
"zod": "^3.20.2"
},
"peerDependencies": {
"@trpc/server": ">=10.9.0",
"msw": ">=0.49.3"
}
}