cal/apps/swagger/package.json

30 lines
828 B
JSON
Raw Normal View History

{
"name": "@calcom/swagger",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
2022-07-12 18:07:50 -03:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
"dev": "PORT=4200 next dev",
"lint": "eslint . --ignore-path .gitignore",
2022-07-13 18:11:40 -03:00
"lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
2022-07-12 18:07:50 -03:00
"lint:report": "eslint . --format json --output-file ../../lint-results/swagger.json",
"start": "PORT=4200 next start"
},
"dependencies": {
"highlight.js": "^11.6.0",
"isarray": "2.0.5",
"next": "^13.4.6",
2022-04-19 05:50:40 -03:00
"openapi-snippet": "^0.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swagger-ui-react": "4.11.1"
},
"devDependencies": {
2022-06-13 13:59:02 -03:00
"@types/node": "16.9.1",
"@types/react": "18.0.26",
"@types/react-dom": "^18.0.9",
"typescript": "^4.9.4"
}
}