-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 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
{
"name": "react-petstore",
"type": "module",
"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 tests *.js *.ts",
"cs": "prettier --check src tests *.js *.ts",
"develop": "vite",
"lint-fix": "eslint src tests *.js *.ts --fix",
"lint": "eslint src tests",
"start": "pnpm i && pnpm cs-fix && pnpm develop",
"test": "vitest"
},
"dependencies": {
"@chubbyts/chubbyts-throwable-to-error": "^2.0.2",
"@tanstack/react-query": "^5.90.20",
"cross-fetch": "^4.1.0",
"date-fns": "^4.1.0",
"qs": "^6.14.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@chubbyts/chubbyts-function-mock": "^2.0.2",
"@eslint/js": "^9.39.2",
"@prettier/sync": "^0.6.1",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.10",
"@types/qs": "^6.14.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-functional": "^9.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"jsdom": "^27.4.0",
"nock": "^14.0.10",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"@tailwindcss/oxide",
"esbuild",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}