-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
165 lines (165 loc) · 6.59 KB
/
package.json
File metadata and controls
165 lines (165 loc) · 6.59 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "tanstack-query-with-orbitjs",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Daniel Giljam",
"url": "https://github.com/DanielGiljam"
},
"homepage": "https://github.com/DanielGiljam/tanstack-query-with-orbitjs#readme",
"bugs": "https://github.com/DanielGiljam/tanstack-query-with-orbitjs/issues?q=is%3Aissue+is%3Aopen",
"repository": {
"type": "git",
"url": "https://github.com/DanielGiljam/tanstack-query-with-orbitjs.git"
},
"scripts": {
"type-check": "nx affected --target=type-check --parallel",
"lint": "nx affected --target=lint --parallel --cache --maxWarnings=0",
"fix": "nx affected --target=lint --parallel --cache --fix --maxWarnings=0",
"prettier": "nx format:check",
"format": "nx format:write",
"lint-prettier": "./scripts/lint-prettier.bash",
"lp": "./scripts/lint-prettier.bash",
"type-check-lint-prettier": "./scripts/type-check-lint-prettier.bash",
"tlp": "./scripts/type-check-lint-prettier.bash",
"fix-format": "./scripts/fix-format.bash",
"ff": "./scripts/fix-format.bash",
"type-check-fix-format": "./scripts/type-check-fix-format.bash",
"tff": "./scripts/type-check-fix-format.bash",
"clear-cache:docusaurus": "./scripts/clear-cache/docusaurus.bash",
"cc:docusaurus": "./scripts/clear-cache/docusaurus.bash",
"clear-cache:eslint": "./scripts/clear-cache/eslint.bash",
"cc:eslint": "./scripts/clear-cache/eslint.bash",
"clear-cache:next": "./scripts/clear-cache/next.bash",
"cc:next": "./scripts/clear-cache/next.bash",
"clear-cache:nx": "./scripts/clear-cache/nx.bash",
"cc:nx": "./scripts/clear-cache/nx.bash",
"clear-cache:tsc": "./scripts/clear-cache/tsc.bash",
"cc:tsc": "./scripts/clear-cache/tsc.bash",
"clear-cache": "concurrently pnpm:clear-cache:*",
"cc": "conc pnpm:cc:*",
"delete-node-modules": "find apps libs -name node_modules -print -delete && rm -rf node_modules"
},
"private": true,
"dependencies": {
"@docusaurus/core": "2.1.0",
"@docusaurus/preset-classic": "2.1.0",
"@mdx-js/react": "^1.6.22",
"@nrwl/next": "15.6.3",
"@swc/helpers": "~0.4.11",
"clsx": "^1.2.1",
"core-js": "^3.6.5",
"next": "13.1.1",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "0.13.7",
"tslib": "^2.3.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.1.0",
"@docusaurus/theme-classic": "2.1.0",
"@docusaurus/types": "2.1.0",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@faker-js/faker": "^7.6.0",
"@lyrasearch/lyra": "^0.4.11",
"@lyrasearch/plugin-data-persistence": "0.1.1",
"@mantine/hooks": "^6.0.8",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@next/bundle-analyzer": "^13.2.4",
"@next/font": "^13.1.6",
"@nrwl/cli": "15.6.3",
"@nrwl/cypress": "15.6.3",
"@nrwl/devkit": "15.6.3",
"@nrwl/eslint-plugin-nx": "15.6.3",
"@nrwl/jest": "15.6.3",
"@nrwl/js": "15.6.3",
"@nrwl/linter": "15.6.3",
"@nrwl/react": "15.6.3",
"@nrwl/vite": "15.6.3",
"@nrwl/web": "15.6.3",
"@nrwl/workspace": "15.6.3",
"@nx-plus/docusaurus": "15.0.0-rc.0",
"@orbit/coordinator": "^0.17.0",
"@orbit/indexeddb": "^0.17.2",
"@orbit/indexeddb-bucket": "^0.17.0",
"@orbit/memory": "^0.17.2",
"@orbit/records": "^0.17.0",
"@prisma/client": "^4.12.0",
"@radix-ui/colors": "^0.1.8",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@tanstack-query-with-orbitjs/core": "workspace:^",
"@tanstack-query-with-orbitjs/eslint-config-javascript": "workspace:^",
"@tanstack-query-with-orbitjs/eslint-config-jsx": "workspace:^",
"@tanstack-query-with-orbitjs/eslint-config-typescript": "workspace:^",
"@tanstack-query-with-orbitjs/react": "workspace:^",
"@tanstack/query-core": "4.26.1",
"@tanstack/react-query": "4.26.1",
"@tanstack/react-query-devtools": "4.26.1",
"@tanstack/react-virtual": "v3.0.0-beta.54",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"autoprefixer": "^10.4.14",
"babel-jest": "28.1.1",
"concurrently": "^8.0.1",
"cypress": "^12.2.0",
"date-fns": "^2.29.3",
"dequal": "^2.0.3",
"eslint": "~8.15.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "8.1.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.11",
"eslint-plugin-react-hooks": "4.6.0",
"idb-keyval": "^6.2.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"jsdom": "~20.0.3",
"lerna": "7.0.2",
"lodash": "^4.17.21",
"nx": "15.6.3",
"postcss": "^8.4.21",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.2.6",
"prisma": "^4.12.0",
"react-test-renderer": "18.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"tailwindcss": "^3.3.1",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tsup": "7.0.0",
"typescript": "~4.8.2",
"uuid": "^9.0.0",
"vite": "^4.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2",
"vitest": "^0.25.8",
"zod": "^3.21.4",
"zod-validation-error": "^1.2.0"
},
"packageManager": "pnpm@8.5.1",
"pnpm": {
"patchedDependencies": {
"@tanstack/query-core@4.26.1": "patches/@tanstack__query-core@4.26.1.patch",
"@lyrasearch/plugin-data-persistence@0.1.1": "patches/@lyrasearch__plugin-data-persistence@0.1.1.patch",
"@tanstack/react-query@4.26.1": "patches/@tanstack__react-query@4.26.1.patch",
"tsup@7.0.0": "patches/tsup@7.0.0.patch"
}
}
}