forked from ts-rest/ts-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ts-rest",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"version-packages": "changeset version",
"release": "yarn nx run-many --target=build && changeset publish",
"nest": "yarn nx run example-nest:serve",
"affected:all": "yarn nx affected:lint && yarn nx affected:test && yarn nx affected:build",
"docs:build": "yarn nx run docs:build && ts-node ./tools/scripts/docs-redirects.ts"
},
"private": true,
"workspaces": [
"libs/ts-rest/*"
],
"dependencies": {
"@changesets/cli": "^2.24.3",
"@docusaurus/core": "2.0.1",
"@docusaurus/preset-classic": "2.0.1",
"@mdx-js/react": "1.6.22",
"@nestjs/apollo": "^10.0.22",
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/graphql": "^10.0.22",
"@nestjs/platform-express": "^9.0.11",
"@nestjs/swagger": "^6.1.0",
"@prisma/client": "^4.2.1",
"@stackblitz/sdk": "^1.8.0",
"@swc/helpers": "~0.4.11",
"@tailwindcss/typography": "^0.5.4",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"@types/uuid": "^8.3.4",
"apollo-server-express": "^3.10.2",
"autoprefixer": "^10.4.8",
"body-parser": "^1.20.0",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"core-js": "^3.25.0",
"cors": "^2.8.5",
"daisyui": "^2.24.0",
"express": "4.18.1",
"graphql": "^16.6.0",
"next": "12.2.5",
"openapi3-ts": "^2.0.2",
"postcss": "^8.4.16",
"prism-react-renderer": "^1.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.34.2",
"react-hot-toast": "^2.3.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.9",
"rxjs": "^7.0.0",
"tailwindcss": "^3.1.8",
"ts-morph": "^15.1.0",
"tslib": "^2.3.0",
"uuid": "^8.3.2",
"zod": "^3.18.0",
"zod-to-json-schema": "^3.17.1",
"zustand": "^4.1.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.0.1",
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.11",
"@nrwl/cli": "14.5.10",
"@nrwl/cypress": "14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/express": "^14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/js": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/nest": "^14.5.10",
"@nrwl/next": "^14.5.10",
"@nrwl/node": "14.5.10",
"@nrwl/nx-cloud": "14.5.4",
"@nrwl/react": "^14.5.10",
"@nrwl/web": "14.5.10",
"@nrwl/workspace": "14.5.10",
"@nx-plus/docusaurus": "14.1.0",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.244",
"@swc/jest": "0.2.22",
"@testing-library/react": "13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/jest": "28.1.8",
"@types/node": "^18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-jest": "29.0.1",
"cypress": "^10.6.0",
"eslint": "~8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.0.1",
"jest-environment-jsdom": "^29.0.1",
"nx": "14.5.10",
"prettier": "^2.6.2",
"prisma": "^4.2.1",
"react-test-renderer": "18.2.0",
"sass": "1.54.5",
"supertest": "^6.2.4",
"ts-jest": "28.0.8",
"ts-node": "^10.9.1",
"tsd": "^0.22.0",
"typescript": "^4.8.2"
}
}