mirror of
https://github.com/ivuorinen/cinode-api.git
synced 2026-01-26 11:14:01 +00:00
29 lines
726 B
JSON
29 lines
726 B
JSON
{
|
|
"name": "cinode-api-ts",
|
|
"version": "0.1.0",
|
|
"description": "Cinode API TypeScript Client",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "bash generate.sh",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"prettier": "npx prettier --write .",
|
|
"prepare": "husky install"
|
|
},
|
|
"author": "Ismo Vuorinen <https://github.com/ivuorinen>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"openapi-fetch": "^0.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ivuorinen/prettier-config": "^0.1.1",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.2",
|
|
"openapi-typescript": "^6.2.4"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|