api-client/package.json

28 lines
666 B
JSON
Raw Normal View History

2019-08-21 13:18:20 +00:00
{
"name": "hoppscotch-app",
2021-08-27 20:51:37 +00:00
"version": "2.0.0",
2021-03-14 15:15:57 +00:00
"description": "Open source API development ecosystem",
2021-04-23 11:39:20 +00:00
"author": "Hoppscotch (support@hoppscotch.io)",
2020-02-24 18:44:50 +00:00
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
2021-09-10 06:32:18 +00:00
"prepare": "husky install",
"dev": "pnpm -r dev",
2021-09-17 07:42:49 +00:00
"build-prod": "pnpm -r build-prod",
"start": "pnpm -r start",
"lintfix": "pnpm -r lintfix",
"pre-commit": "pnpm -r lint"
},
"workspaces": [
"./packages/*"
2021-09-10 06:32:18 +00:00
],
"dependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
2021-07-25 13:11:26 +00:00
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0"
2021-09-10 06:32:18 +00:00
}
}