-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "react-petstore",
"type": "module",
"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 tests *.cjs *.js *.ts",
"cs": "prettier --check src tests *.cjs *.js *.ts",
"develop": "vite",
"lint-fix": "eslint src tests *.cjs *.js *.ts --fix",
"lint": "eslint src tests *.cjs *.js *.ts",
"start": "pnpm i && pnpm cs-fix && pnpm develop",
"test": "vitest"
},
"dependencies": {
"@chubbyts/chubbyts-throwable-to-error": "^1.2.1",
"cross-fetch": "^4.0.0",
"date-fns": "^3.6.0",
"qs": "^6.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@chubbyts/chubbyts-function-mock": "^1.4.1",
"@prettier/sync": "^0.5.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.14.2",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.3",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}