-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "agent-protocol",
"scripts": {
"ci": "prettier . -c && eslint . --ext .ts,.tsx",
"prettier": "prettier . -w",
"lint": "eslint . --ext .ts,.tsx --fix",
"prepare": "husky install",
"generate:client:js": "openapi-generator-cli generate --global-property apis,models,supportingFiles,modelDocs=false -i schemas/openapi.yml -g typescript-fetch -c packages/client/js/openapitools.json -o packages/client/js --additional-properties=generateSourceCodeOnly=true"
},
"husky": {
"hooks": {
"pre-commit": "npm run ci"
}
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"husky": "^7.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"typescript": "^5.1.6"
},
"dependencies": {
"express": "^4.18.2",
"express-openapi-validator": "^5.1.5",
"express-serve-static-core": "^0.1.1"
}
}