forked from botpress/botpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.66 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.66 KB
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": "botpress",
"private": true,
"scripts": {
"build": "turbo run build",
"bump": "depsynky bump --ignore-dev && pnpm -w install",
"test": "turbo test",
"check:bplint": "turbo check:bplint",
"check:dep": "depsynky check --ignore-dev",
"check:sherif": "sherif -i zod -i axios -i query-string -i googleapis -i @linear/sdk -i openai",
"check:format": "prettier --check .",
"check:eslint": "pnpm -r --no-bail exec eslint --max-warnings 0",
"check:oxlint": "oxlint -c .oxlintrc.json",
"check:lint": "pnpm check:bplint && pnpm check:oxlint && pnpm check:eslint",
"check:type": "turbo check:type",
"fix:dep": "depsynky sync --ignore-dev",
"fix:sherif": "sherif -i zod -i axios -i query-string -i googleapis -i @linear/sdk -i openai --fix",
"fix:format": "prettier --write .",
"fix:oxlint": "oxlint -c .oxlintrc.json --fix --fix-suggestions",
"fix:eslint": "pnpm -r --no-bail exec eslint --fix",
"fix:lint": "pnpm fix:oxlint && pnpm fix:eslint",
"check": "pnpm check:sherif && pnpm check:dep && pnpm check:format && pnpm check:lint && pnpm check:type",
"fix": "pnpm fix:sherif && pnpm fix:dep && pnpm fix:oxlint && pnpm fix:format && pnpm fix:lint"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}": [
"oxlint -c .oxlintrc.json --fix --fix-suggestions",
"prettier --write"
],
"**/*.{json,yaml,yml,md}": "prettier --write",
"**/*.test.ts": "vitest --run"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.564.0",
"@botpress/api": "1.76.0",
"@botpress/cli": "workspace:*",
"@botpress/client": "workspace:*",
"@botpress/sdk": "workspace:*",
"@bpinternal/depsynky": "0.3.0",
"@bpinternal/readiness": "^0.0.16",
"@bpinternal/retry-cli": "^0.1.1",
"@linear/sdk": "^55.0.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/node": "^22.16.4",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"axios": "1.9.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^54.3.1",
"eslint-plugin-oxlint": "^1.14.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"oxlint": "^1.14.0",
"prettier": "^3.4.2",
"semver": "^7.3.8",
"sherif": "1.0.1",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.42.0",
"vitest": "^2.1.4"
},
"packageManager": "pnpm@10.12.4",
"pnpm": {
"patchedDependencies": {
"source-map-js@1.2.1": "patches/source-map-js@1.2.1.patch"
}
}
}