-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
147 lines (147 loc) · 4.09 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
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
{
"name": "hyper-fetch",
"version": "0.0.0",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"install-peers": "node ./scripts/install-peers",
"prepare": "yarn install-peers && yarn husky install",
"start": "nx run-many --target=start --all --parallel=10",
"start:react": "nx serve reactjs",
"start:next": "nx serve next",
"build": "nx run-many --target=build --all --exclude=next,reactjs --parallel=10",
"build:docs": "cd documentation && yarn install && yarn build",
"test": "nx run-many --target=test-pipeline --all --parallel=1",
"lint": "nx run-many --target=lint --all --exclude=next,reactjs --parallel=10",
"typecheck": "nx run-many --target=typecheck --all --parallel=10",
"release": "nx run-many --target=release --all --parallel=1"
},
"private": true,
"dependencies": {
"@nrwl/cli": "15.8.5",
"@nrwl/js": "15.8.5",
"@nrwl/workspace": "15.8.5",
"core-js": "^3.6.5",
"regenerator-runtime": "0.13.7"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.2",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@jest/transform": "^28.1.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.4",
"@nrwl/cypress": "15.8.5",
"@nrwl/jest": "15.8.5",
"@nrwl/next": "15.8.5",
"@nrwl/react": "15.8.5",
"@nrwl/vite": "15.8.5",
"@nrwl/web": "15.8.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "28.1.1",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"@zerollup/ts-transform-paths": "^1.7.18",
"commitlint": "^17.0.2",
"cypress": "^12.2.0",
"docusaurus-docgen": "^1.1.4",
"esbuild": "^0.15.15",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"executioner": "^2.0.1",
"husky": "^8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-extended": "^3.2.0",
"jest-watch-typeahead": "^2.2.1",
"jest-websocket-mock": "^2.4.0",
"jsdom": "~20.0.3",
"lint-staged": "^13.0.1",
"msw": "^1.2.1",
"next": "13.1.1",
"notistack": "^2.0.5",
"prettier": "^2.6.2",
"react": ">= 16.8.0",
"react-countdown": "^2.3.2",
"react-dom": "18.2.0",
"react-router-dom": "6.8.1",
"react-test-renderer": "18.2.0",
"rollup": "^3.10.1",
"rollup-plugin-dts": "^5.1.1",
"semantic-release": "^19.0.5",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tsd": "^0.28.1",
"tslib": "^2.3.0",
"typescript": "~4.9.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2",
"vitest": "^0.25.8"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"repository": {
"type": "git",
"url": "https://github.com/BetterTyped/hyper-fetch.git"
},
"keywords": [
"fetch",
"xhr",
"requests",
"js",
"graphql",
"fetcher",
"queue",
"offline",
"persistence",
"cache",
"builder",
"command",
"swr",
"websockets",
"ajax",
"sse",
"sockets",
"events"
],
"msw": {
"workerDirectory": "src"
},
"peerDependencies": {
"axios": "*",
"events": "*",
"firebase": "*",
"firebase-admin": "*",
"firebase-tools": "*",
"graphql": "*",
"graphql-tag": "^2.12.6",
"http": "*",
"stream": "*"
}
}