hoppscotch/package.json

112 lines
3.4 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-08-03 04:54:32 +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-08-01 12:48:30 +00:00
"@apollo/client": "^3.4.1",
2021-06-06 11:06:02 +00:00
"@nuxtjs/axios": "^5.13.6",
2021-08-01 14:33:27 +00:00
"@nuxtjs/composition-api": "^0.26.0",
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",
"acorn": "^8.4.1",
2021-06-30 09:23:15 +00:00
"acorn-walk": "^8.1.1",
2021-08-01 12:48:30 +00:00
"core-js": "^3.16.0",
2020-07-24 04:35:54 +00:00
"esprima": "^4.0.1",
2021-08-01 12:48:30 +00:00
"firebase": "^8.8.1",
2021-08-03 05:15:11 +00:00
"graphql": "^15.5.0",
2021-05-30 13:40:20 +00:00
"graphql-language-service-interface": "^2.8.4",
2021-07-01 16:39:11 +00:00
"json-loader": "^0.5.7",
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-06-14 15:43:21 +00:00
"nuxt": "^2.15.7",
2021-07-26 02:22:15 +00:00
"nuxt-i18n": "^6.28.0",
2020-03-11 12:20:04 +00:00
"paho-mqtt": "^1.1.0",
2021-08-03 05:15:11 +00:00
"rxjs": "^6.0.0",
2021-07-11 14:39:52 +00:00
"socket.io-client": "^4.1.3",
"socketio-wildcard": "^2.0.0",
2021-07-13 23:49:08 +00:00
"splitpanes": "^2.3.8",
"tern": "^0.24.3",
"vue-apollo": "^3.0.7",
"vue-cli-plugin-apollo": "^0.22.2",
2021-07-02 05:01:29 +00:00
"vue-functional-data-merge": "^3.1.0",
2021-06-30 17:23:48 +00:00
"vue-github-button": "^1.3.0",
"vue-rx": "^6.2.0",
2021-07-02 05:01:29 +00:00
"vue-tippy": "^4.10.2",
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-06-21 10:02:23 +00:00
"yargs-parser": "^20.2.9"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
2021-07-25 13:11:26 +00:00
"@babel/core": "^7.14.8",
2021-08-01 12:48:30 +00:00
"@babel/preset-env": "^7.14.9",
2021-07-25 13:11:26 +00:00
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
2021-06-14 15:43:21 +00:00
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
2021-08-03 05:15:11 +00:00
"@nuxtjs/color-mode": "^2.0.10",
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-07-03 13:14:58 +00:00
"@nuxtjs/svg": "^0.1.12",
2021-06-13 10:55:22 +00:00
"@testing-library/jest-dom": "^5.14.1",
2021-07-18 04:33:52 +00:00
"@types/cookie": "^0.4.1",
2021-07-11 14:39:52 +00:00
"@types/lodash": "^4.14.171",
2021-07-22 18:37:39 +00:00
"@types/splitpanes": "^2.2.1",
2021-07-25 13:11:26 +00:00
"@vue/test-utils": "^1.2.2",
2020-08-17 23:38:10 +00:00
"babel-core": "^7.0.0-bridge.0",
2021-06-30 09:23:15 +00:00
"babel-jest": "^27.0.6",
2021-08-01 12:48:30 +00:00
"eslint": "^7.32.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-08-01 12:48:30 +00:00
"eslint-plugin-vue": "^7.15.0",
2021-07-11 14:39:52 +00:00
"husky": "^7.0.1",
2021-06-30 09:23:15 +00:00
"jest": "^27.0.6",
2020-08-17 03:52:02 +00:00
"jest-serializer-vue": "^2.0.2",
2021-07-25 13:11:26 +00:00
"lint-staged": "^11.1.1",
"nuxt-windicss": "^1.2.1",
2021-06-27 18:54:16 +00:00
"prettier": "^2.3.2",
2021-06-20 12:36:20 +00:00
"pretty-quick": "^3.1.1",
"raw-loader": "^4.0.2",
2021-08-01 12:48:30 +00:00
"sass": "^1.37.0",
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",
2021-07-25 13:11:26 +00:00
"ts-jest": "^27.0.4",
"vue-jest": "^3.0.7",
2021-02-12 18:27:14 +00:00
"worker-loader": "^3.0.8"
2021-07-16 15:05:15 +00:00
},
"browser": {
"fs": false
2020-02-24 18:44:50 +00:00
}
}