forked from brandiqa/react-query-demo
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 971 Bytes
/
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
{
"name": "react-query-demo",
"description": "React Query example project",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write \"**/*.{jsx,js,css,json,md}\"",
"json-server": "json-server --watch api/db.json --port 3004"
},
"author": "Michael Wanyoike <micwanyoike@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/brandiqa/react-query-example"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-hook-form": "^7.2.1",
"react-modal": "^3.13.1",
"react-query": "^3.13.10",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.1",
"json-server": "^0.16.3",
"prettier": "^2.2.1",
"vite": "^2.1.5",
"vite-plugin-windicss": "^0.14.6",
"windicss": "^2.5.14"
}
}