-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.29 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
74
75
76
77
{
"name": "grocy-trolley",
"description": "Links Grocy to NZ online grocery shopping",
"version": "3.1.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "node ./build/out/main.js",
"gt": "node ./build/out/main.js",
"build": "node bin/build.mjs",
"build:dev": "node bin/build.mjs -t dev --sourcemap",
"build:prod": "node bin/build.mjs -t prod",
"build:watch": "node bin/build.mjs -t dev --watch",
"test": "vitest",
"test:internal": "vitest --testNamePattern internal",
"test:internal:coverage": "vitest --testNamePattern internal --coverage",
"typecheck": "tsc -w",
"lint": "eslint src --cache --cache-location=build",
"updateTaggunTypes": "openapi-typescript https://api.taggun.io/docs/swagger.json --output ./src/receipt-ocr/taggun/api.d.ts",
"updateGrocyTypes": "openapi-typescript src/openapi/grocy.openapi.yaml --output ./src/openapi/grocy.d.ts"
},
"dependencies": {
"@abraham/reflection": "0.10.0",
"@slack/bolt": "3.12.2",
"ajv": "8.12.0",
"chalk": "5.2.0",
"commander": "9.5.0",
"dedent": "0.7.0",
"dotenv": "16.0.3",
"json-stringify-pretty-compact": "4.0.0",
"playwright": "1.30.0",
"prompts": "2.4.2",
"rxjs": "7.8.0",
"tsyringe": "4.7.0"
},
"devDependencies": {
"@anatine/esbuild-decorators": "0.2.19",
"@types/dedent": "0.7.0",
"@types/node": "18.11.18",
"@types/prompts": "2.4.2",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"@vitest/coverage-c8": "0.24.3",
"@vitest/ui": "0.24.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"esbuild": "0.15.11",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"fast-glob": "3.2.12",
"openapi-typescript": "5.4.1",
"prettier": "2.8.3",
"standard-version": "9.5.0",
"typescript": "4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.24.3"
},
"packageManager": "yarn@3.4.1",
"engines": {
"node": "^18"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"scripts": {
"postchangelog": "yarn prettier -w CHANGELOG.md"
},
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
]
}
}