hoppscotch/package.json

29 lines
718 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",
2021-09-17 08:16:23 +00:00
"dev": "pnpm -r do-dev",
"generate": "pnpm -r do-build-prod",
"start": "pnpm -r do-prod-start",
"lintfix": "pnpm -r do-lintfix",
"pre-commit": "pnpm -r do-lintfix",
"test": "pnpm -r do-test"
},
"workspaces": [
"./packages/*"
2021-09-10 06:32:18 +00:00
],
"dependencies": {
"husky": "^7.0.2",
2021-10-17 14:12:53 +00:00
"lint-staged": "^11.2.3"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
2021-10-10 14:54:31 +00:00
"@commitlint/cli": "^13.2.1",
2021-10-03 13:43:44 +00:00
"@commitlint/config-conventional": "^13.2.0"
2021-09-10 06:32:18 +00:00
}
}