add and fix translations in ko.json (#2752)

This commit is contained in:
Cheese
2022-10-10 00:28:34 +09:00
committed by GitHub
parent c28ffd604d
commit fb13fae385
66 changed files with 2292 additions and 461 deletions

View File

@@ -1,22 +1,21 @@
{
"name": "hoppscotch-app",
"private": true,
"version": "3.0.0",
"version": "3.0.1",
"scripts": {
"dev": "pnpm exec npm-run-all -p -l dev:*",
"dev:vite": "vite",
"dev:gql-codegen": "graphql-codegen --config gql-codegen.yml --watch",
"dev:gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml --watch",
"build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
"lint": "eslint src --ext .ts,.js,.vue --ignore-path .gitignore .",
"prod-lint": "cross-env HOPP_LINT_FOR_PROD=true pnpm run lint",
"lintfix": "eslint --fix src --ext .ts,.js,.vue --ignore-path .gitignore .",
"generate": "pnpm run build",
"preview": "vite preview",
"gql-codegen": "graphql-codegen --config gql-codegen.yml",
"gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml",
"postinstall": "pnpm run gql-codegen",
"do-dev": "pnpm run dev",
"do-build-prod": "pnpm run build",
"do-prod-start": "pnpm run preview",
"do-lint": "pnpm run prod-lint",
"do-typecheck": "pnpm run lint",
"do-lintfix": "pnpm run lintfix"