forked from botpress/botpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "botpress",
"private": true,
"scripts": {
"build": "turbo build",
"bump": "depsynky bump && pnpm -w install",
"test": "pnpm vitest --run",
"check:type": "pnpm -r --stream check:type",
"check:format": "prettier --check .",
"fix:format": "prettier --write .",
"check:lint": "eslint ./ --ext .ts --ext .tsx",
"fix:lint": "eslint --fix ./ --ext .ts --ext .tsx",
"check:dep": "depsynky check",
"fix:dep": "depsynky sync",
"check": "pnpm check:dep && pnpm check:format && pnpm check:lint && pnpm check:type",
"fix": "pnpm fix:dep && pnpm fix:format && pnpm fix:lint"
},
"dependencies": {
"@botpress/cli": "workspace:*",
"@botpress/sdk": "workspace:^",
"@bpinternal/depsynky": "^0.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.1",
"retry-cli": "^0.7.0",
"ts-node": "^10.9.1",
"turbo": "^1.13.3",
"typescript": "^4.9.4",
"vitest": "^0.33.0"
},
"packageManager": "[email protected]"
}