-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "react-petstore",
"version": "1.0.0",
"description": "A skeleton react app for the petstore api.",
"keywords": [
"chubbyts",
"skleton",
"react"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/react-petstore",
"scripts": {
"build": "tsc && vite build",
"cs-fix": "prettier --write src",
"cs": "prettier --check src",
"start": "vite",
"test": "vitest"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"cross-fetch": "^3.1.6",
"date-fns": "^2.30.0",
"history": "^5.3.0",
"postcss": "^8.4.23",
"qs": "^6.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-router-dom": "^6.11.1",
"tailwindcss": "^3.3.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.1.4",
"@types/prettier": "^2.7.2",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.31.0",
"fetch-mock": "^9.11.0",
"jsdom": "^22.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vitest": "^0.31.0"
},
"engines": {
"node": ">=16"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}