hoppscotch/package.json

99 lines
3.0 KiB
JSON
Raw Normal View History

2019-08-21 13:18:20 +00:00
{
2020-08-13 11:20:02 +00:00
"name": "hoppscotch",
2021-05-27 15:11:01 +00:00
"version": "1.12.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",
"generate": "nuxt generate --modern",
2021-05-17 05:55:50 +00:00
"analyze": "npx nuxt build -a",
2021-05-25 16:13:13 +00:00
"lint:script": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{css,scss,vue} --ignore-path .gitignore",
"lint": "npm run lint:script && 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-25 16:13:13 +00:00
"prepare": "husky install",
2021-05-17 05:55:50 +00:00
"pre-commit": "lint-staged"
},
2021-05-17 05:55:50 +00:00
"lint-staged": {
2021-05-18 06:26:59 +00:00
"*.{ts,js,vue}": "eslint",
2021-05-25 16:13:13 +00:00
"*.{css,scss,vue}": "stylelint"
},
2020-02-24 18:44:50 +00:00
"dependencies": {
2021-05-23 13:18:48 +00:00
"@apollo/client": "^3.3.19",
2021-06-06 11:06:02 +00:00
"@nuxtjs/axios": "^5.13.6",
2020-11-11 03:04:00 +00:00
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/robots": "^2.5.0",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/toast": "^3.3.1",
"ace-builds": "^1.4.12",
2021-06-06 11:06:02 +00:00
"acorn": "^8.3.0",
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-06-06 11:06:02 +00:00
"firebase": "^8.6.5",
2021-01-28 15:58:36 +00:00
"graphql": "^15.5.0",
2021-05-30 13:40:20 +00:00
"graphql-language-service-interface": "^2.8.4",
2021-05-16 06:51:28 +00:00
"lodash": "^4.17.21",
"mustache": "^4.2.0",
2021-05-20 02:23:47 +00:00
"node-interval-tree": "^1.3.3",
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-23 13:18:48 +00:00
"rxjs": "^7.1.0",
"socket.io-client": "^4.1.2",
"socketio-wildcard": "^2.0.0",
"tern": "^0.24.3",
2021-03-22 02:55:47 +00:00
"v-tooltip": "^2.1.3",
"vue-apollo": "^3.0.7",
"vue-cli-plugin-apollo": "^0.22.2",
"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",
"yargs-parser": "^20.2.7"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
2021-05-23 13:18:48 +00:00
"@babel/core": "^7.14.3",
2021-05-30 13:40:20 +00:00
"@babel/preset-env": "^7.14.4",
2021-05-16 06:51:28 +00:00
"@nuxt/types": "^2.15.6",
"@nuxt/typescript-build": "^2.1.0",
2021-05-30 13:40:20 +00:00
"@nuxtjs/color-mode": "^2.0.9",
2021-05-16 06:53:29 +00:00
"@nuxtjs/dotenv": "^1.4.1",
2021-05-30 13:40:20 +00:00
"@nuxtjs/eslint-config-typescript": "^6.0.1",
2021-05-17 05:55:50 +00:00
"@nuxtjs/eslint-module": "^3.0.2",
"@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-06-06 11:06:02 +00:00
"@nuxtjs/tailwindcss": "^4.1.3",
"@testing-library/jest-dom": "^5.13.0",
2021-05-23 13:18:48 +00:00
"@types/lodash": "^4.14.170",
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",
2021-05-30 13:40:20 +00:00
"babel-jest": "^27.0.2",
2021-06-06 11:06:02 +00:00
"eslint": "^7.28.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-05-30 13:40:20 +00:00
"eslint-plugin-vue": "^7.10.0",
"husky": "^6.0.0",
2021-06-06 11:06:02 +00:00
"jest": "^27.0.4",
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-23 13:18:48 +00:00
"postcss": "^8.3.0",
2021-06-06 11:06:02 +00:00
"prettier": "^2.3.1",
2020-10-14 03:21:33 +00:00
"pretty-quick": "^3.1.0",
"raw-loader": "^4.0.2",
2021-06-06 11:06:02 +00:00
"sass": "^1.34.1",
2021-05-16 06:51:28 +00:00
"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",
"ts-jest": "^27.0.3",
"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
}
}