2019-08-21 13:18:20 +00:00
|
|
|
{
|
2020-08-13 11:20:02 +00:00
|
|
|
"name": "hoppscotch",
|
2021-04-10 14:49:43 +00:00
|
|
|
"version": "1.10.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": {
|
|
|
|
|
"dev": "nuxt",
|
|
|
|
|
"build": "nuxt build",
|
|
|
|
|
"start": "nuxt start",
|
2020-11-22 01:35:04 +00:00
|
|
|
"generate": "nuxt generate --modern",
|
2021-05-17 05:55:50 +00:00
|
|
|
"analyze": "npx nuxt build -a",
|
2021-05-17 09:47:23 +00:00
|
|
|
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
|
2021-05-17 05:55:50 +00:00
|
|
|
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
|
|
|
|
|
"lint": "npm run lint:js && npm run lint:style",
|
2021-05-17 09:47:23 +00:00
|
|
|
"lintfix": "eslint --ext .ts,.js,.vue --ignore-path .gitignore . --fix",
|
2020-12-06 05:30:00 +00:00
|
|
|
"test": "jest",
|
2021-05-17 05:55:50 +00:00
|
|
|
"postinstall": "husky install",
|
|
|
|
|
"pre-commit": "lint-staged"
|
2020-02-26 03:48:36 +00:00
|
|
|
},
|
2021-05-17 05:55:50 +00:00
|
|
|
"lint-staged": {
|
2021-05-18 06:26:59 +00:00
|
|
|
"*.{ts,js,vue}": "eslint",
|
2021-05-17 05:55:50 +00:00
|
|
|
"*.{css,vue}": "stylelint"
|
2020-02-26 03:48:36 +00:00
|
|
|
},
|
2020-02-24 18:44:50 +00:00
|
|
|
"dependencies": {
|
2021-05-16 06:51:28 +00:00
|
|
|
"@apollo/client": "^3.3.18",
|
2021-02-10 14:49:09 +00:00
|
|
|
"@nuxtjs/axios": "^5.13.1",
|
2020-11-11 03:04:00 +00:00
|
|
|
"@nuxtjs/gtm": "^2.4.0",
|
2021-03-12 08:39:21 +00:00
|
|
|
"@nuxtjs/robots": "^2.5.0",
|
2020-06-26 01:08:44 +00:00
|
|
|
"@nuxtjs/sitemap": "^2.4.0",
|
2020-07-15 00:05:03 +00:00
|
|
|
"@nuxtjs/toast": "^3.3.1",
|
2020-07-07 00:23:39 +00:00
|
|
|
"ace-builds": "^1.4.12",
|
2021-05-04 19:36:50 +00:00
|
|
|
"acorn": "^8.2.4",
|
2021-04-25 16:38:09 +00:00
|
|
|
"acorn-walk": "^8.1.0",
|
2020-07-24 04:35:54 +00:00
|
|
|
"esprima": "^4.0.1",
|
2021-05-16 06:51:28 +00:00
|
|
|
"firebase": "^8.6.1",
|
2021-01-28 15:58:36 +00:00
|
|
|
"graphql": "^15.5.0",
|
2021-04-12 15:50:25 +00:00
|
|
|
"graphql-language-service-interface": "^2.8.3",
|
2021-05-16 06:51:28 +00:00
|
|
|
"lodash": "^4.17.21",
|
2021-03-30 05:00:24 +00:00
|
|
|
"mustache": "^4.2.0",
|
2021-05-16 06:51:28 +00:00
|
|
|
"nuxt": "^2.15.6",
|
2021-05-09 14:59:24 +00:00
|
|
|
"nuxt-i18n": "^6.27.0",
|
2020-03-11 12:20:04 +00:00
|
|
|
"paho-mqtt": "^1.1.0",
|
2021-05-16 06:51:28 +00:00
|
|
|
"rxjs": "^7.0.1",
|
|
|
|
|
"socket.io-client": "^4.1.1",
|
2020-04-20 18:45:11 +00:00
|
|
|
"socketio-wildcard": "^2.0.0",
|
2021-01-22 01:34:02 +00:00
|
|
|
"tern": "^0.24.3",
|
2021-03-22 02:55:47 +00:00
|
|
|
"v-tooltip": "^2.1.3",
|
2021-05-03 13:22:39 +00:00
|
|
|
"vue-apollo": "^3.0.7",
|
2021-04-26 09:37:18 +00:00
|
|
|
"vue-cli-plugin-apollo": "^0.22.2",
|
2021-03-23 15:18:14 +00:00
|
|
|
"vue-rx": "^6.2.0",
|
2020-02-24 18:44:50 +00:00
|
|
|
"vuejs-auto-complete": "^0.9.0",
|
2020-10-06 00:50:06 +00:00
|
|
|
"vuex-persist": "^3.1.3",
|
2021-03-12 08:39:21 +00:00
|
|
|
"yargs-parser": "^20.2.7"
|
2020-02-24 18:44:50 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-05-16 06:51:28 +00:00
|
|
|
"@babel/core": "^7.14.2",
|
|
|
|
|
"@babel/preset-env": "^7.14.2",
|
|
|
|
|
"@nuxt/types": "^2.15.6",
|
2021-03-23 15:18:14 +00:00
|
|
|
"@nuxt/typescript-build": "^2.1.0",
|
2021-03-12 08:39:21 +00:00
|
|
|
"@nuxtjs/color-mode": "^2.0.5",
|
2021-05-16 06:53:29 +00:00
|
|
|
"@nuxtjs/dotenv": "^1.4.1",
|
2021-05-17 09:47:23 +00:00
|
|
|
"@nuxtjs/eslint-config-typescript": "^6.0.0",
|
2021-05-17 05:55:50 +00:00
|
|
|
"@nuxtjs/eslint-module": "^3.0.2",
|
2020-07-17 00:40:17 +00:00
|
|
|
"@nuxtjs/google-analytics": "^2.4.0",
|
2021-03-09 15:28:41 +00:00
|
|
|
"@nuxtjs/google-fonts": "^1.3.0",
|
2021-01-28 15:58:36 +00:00
|
|
|
"@nuxtjs/pwa": "^3.3.5",
|
2021-05-17 05:55:50 +00:00
|
|
|
"@nuxtjs/stylelint-module": "^4.0.0",
|
2021-05-16 06:51:28 +00:00
|
|
|
"@nuxtjs/tailwindcss": "^4.1.2",
|
2021-04-23 11:39:20 +00:00
|
|
|
"@testing-library/jest-dom": "^5.12.0",
|
2021-05-16 06:51:28 +00:00
|
|
|
"@types/lodash": "^4.14.169",
|
2021-05-02 15:21:27 +00:00
|
|
|
"@vue/test-utils": "^1.2.0",
|
2020-08-17 23:38:10 +00:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2020-11-05 08:02:27 +00:00
|
|
|
"babel-jest": "^26.6.3",
|
2021-05-09 14:59:24 +00:00
|
|
|
"eslint": "^7.26.0",
|
2021-05-17 05:55:50 +00:00
|
|
|
"eslint-config-prettier": "^8.1.0",
|
|
|
|
|
"eslint-plugin-nuxt": ">=2.0.0",
|
|
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
2021-04-12 08:14:19 +00:00
|
|
|
"eslint-plugin-vue": "^7.9.0",
|
2021-03-30 05:00:24 +00:00
|
|
|
"husky": "^6.0.0",
|
2020-11-05 08:02:27 +00:00
|
|
|
"jest": "^26.6.3",
|
2020-08-17 03:52:02 +00:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2021-05-17 05:55:50 +00:00
|
|
|
"lint-staged": "^11.0.0",
|
2021-05-16 06:51:28 +00:00
|
|
|
"postcss": "^8.2.15",
|
|
|
|
|
"prettier": "^2.3.0",
|
2020-10-14 03:21:33 +00:00
|
|
|
"pretty-quick": "^3.1.0",
|
2020-12-09 05:11:05 +00:00
|
|
|
"raw-loader": "^4.0.2",
|
2021-05-16 06:51:28 +00:00
|
|
|
"sass": "^1.32.13",
|
|
|
|
|
"sass-loader": "^10.2.0",
|
2021-05-17 05:55:50 +00:00
|
|
|
"stylelint": "^13.12.0",
|
|
|
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2021-05-09 14:59:24 +00:00
|
|
|
"ts-jest": "^26.5.6",
|
2020-12-01 15:51:13 +00:00
|
|
|
"vue-jest": "^3.0.7",
|
2021-02-12 18:27:14 +00:00
|
|
|
"worker-loader": "^3.0.8"
|
2020-02-24 18:44:50 +00:00
|
|
|
}
|
2019-09-11 10:59:33 +00:00
|
|
|
}
|