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
|
{
"name": "pantry",
"version": "0.1.0",
"description": "Kitchen inventory organizer and planner",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kjhoerr/pantry.git"
},
"author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
"license": "BlueOak-1.0.0",
"scripts": {
"start": "rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview",
"lint": "eslint .",
"format": "prettier --write 'src/**/*.(ts|tsx)'",
"codegen": "graphql-codegen && yarn format"
},
"dependencies": {
"@heroicons/react": "2.0.16",
"@mantine/hooks": "^8.3.5",
"@reduxjs/toolkit": "^2.9.2",
"@rsbuild/core": "^1.5.17",
"@rsbuild/plugin-react": "^1.4.1",
"@rsbuild/plugin-svgr": "^1.2.2",
"@tailwindcss/postcss": "^4.1.14",
"flowbite": "^3.1.2",
"flowbite-react": "^0.12.9",
"graphql": "^16.11.0",
"graphql-request": "7.3.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.4",
"redux": "^5.0.1",
"tailwindcss": "^4.1.14",
"uuid": "^13.0.0",
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "latest",
"@graphql-codegen/cli": "latest",
"@graphql-codegen/client-preset": "latest",
"@rsbuild/plugin-eslint": "latest",
"@testing-library/dom": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@trivago/prettier-plugin-sort-imports": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"prettier": "latest",
"typescript": "latest",
"typescript-eslint": "latest"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"type": "module",
"packageManager": "yarn@3.8.7"
}
|