-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"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": "^1.3.2",
"cross-fetch": "^4.1.0",
"date-fns": "^4.1.0",
"qs": "^6.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@chubbyts/chubbyts-function-mock": "^1.5.2",
"@eslint/js": "^9.17.0",
"@prettier/sync": "^0.5.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/qs": "^6.9.17",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-functional": "^7.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.4",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.19.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}