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
|
{
"name": "pantry",
"version": "0.1.0",
"description": "Kitchen inventory organizer and planner",
"repository": {
"type": "git",
"url": "https://github.com/kjhoerr/pantry.git"
},
"author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
"license": "BlueOak-1.0.0",
"scripts": {
"dev:fe": "mkdir -p src/main/resources/META-INF/resources && nodemon --watch src/conf --watch src/components --watch src/model --watch src/pages --watch src/styles --watch src/util -e ts,tsx,css -x 'APP_ENV=development yarn inject'",
"dev:be": "mvn quarkus:dev",
"dev": "npm-run-all --parallel dev:*",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"format": "prettier --write 'src/**/*.(ts|tsx)'",
"codegen": "orval --clean && yarn format",
"api-update": "curl -LG http://localhost:8080/q/openapi -o src/conf/openapi-pantry.yaml && yarn codegen",
"inject": "rm -rf src/main/resources/META-INF/resources && yarn build && cp -R out src/main/resources/META-INF/resources"
},
"dependencies": {
"@tanstack/react-query": "^4.1.3",
"axios": "^0.27.2",
"immutable": "^4.1.0",
"next": "12.2.5",
"orval": "^6.9.6",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.3"
},
"devDependencies": {
"@types/node": "18.7.3",
"@types/react": "18.0.17",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"nodemon": "^2.0.19",
"npm-run-all2": "^6.0.1",
"typescript": "4.7.4"
}
}
|