hoppscotch/package.json

102 lines
2.6 KiB
JSON
Raw Normal View History

2019-08-21 13:18:20 +00:00
{
2020-08-13 11:20:02 +00:00
"name": "hoppscotch",
"version": "2.0.0",
2020-02-24 18:44:50 +00:00
"description": "A free, fast and beautiful API request builder",
"author": "liyasthomas",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate --modern",
"pretty-quick": "pretty-quick --staged --pattern \"**/*.*(html|js|json|vue)\"",
2020-12-06 05:30:00 +00:00
"test": "jest",
"postinstall": "husky install"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": false,
"printWidth": 100
},
2020-02-24 18:44:50 +00:00
"dependencies": {
2021-02-02 04:52:31 +00:00
"@nuxtjs/axios": "^5.13.0",
2020-11-11 03:04:00 +00:00
"@nuxtjs/gtm": "^2.4.0",
2020-02-24 18:44:50 +00:00
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/toast": "^3.3.1",
"ace-builds": "^1.4.12",
2021-01-26 14:39:19 +00:00
"acorn": "^8.0.5",
"acorn-walk": "^8.0.2",
2020-07-24 04:35:54 +00:00
"esprima": "^4.0.1",
2021-02-05 00:32:09 +00:00
"firebase": "^8.2.6",
2021-01-28 15:58:36 +00:00
"graphql": "^15.5.0",
2021-01-08 16:23:21 +00:00
"graphql-language-service-interface": "^2.8.2",
2020-12-09 19:32:49 +00:00
"mustache": "^4.1.0",
"nuxt": "^2.14.12",
2021-02-05 00:32:09 +00:00
"nuxt-i18n": "^6.20.0",
2020-03-11 12:20:04 +00:00
"paho-mqtt": "^1.1.0",
2021-02-05 00:32:09 +00:00
"socket.io-client": "^3.1.1",
"socketio-wildcard": "^2.0.0",
"tern": "^0.24.3",
2021-01-05 00:18:25 +00:00
"v-tooltip": "^2.1.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",
2020-11-10 01:26:15 +00:00
"yargs-parser": "^20.2.4"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
2021-02-05 00:32:09 +00:00
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
2021-01-26 14:39:19 +00:00
"@nuxtjs/color-mode": "^2.0.3",
"@nuxtjs/google-analytics": "^2.4.0",
2021-01-28 15:58:36 +00:00
"@nuxtjs/pwa": "^3.3.5",
2020-12-22 15:01:13 +00:00
"@nuxtjs/tailwindcss": "^3.4.2",
2021-01-13 14:53:14 +00:00
"@testing-library/jest-dom": "^5.11.9",
2021-02-05 00:32:09 +00:00
"@vue/test-utils": "^1.1.3",
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-02-02 04:52:31 +00:00
"eslint": "^7.19.0",
2021-01-23 06:08:37 +00:00
"eslint-plugin-vue": "^7.5.0",
"firebase-mock": "^2.3.2",
2021-01-28 15:58:36 +00:00
"husky": "^5.0.7",
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",
2020-11-28 11:53:10 +00:00
"prettier": "^2.2.1",
2020-10-14 03:21:33 +00:00
"pretty-quick": "^3.1.0",
"raw-loader": "^4.0.2",
2021-02-02 04:52:31 +00:00
"sass": "^1.32.6",
"sass-loader": "^10.1.1",
"vue-jest": "^3.0.7",
2020-12-27 13:07:45 +00:00
"worker-loader": "^3.0.7"
2020-08-17 03:52:02 +00:00
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"watchman": false,
"moduleNameMapper": {
".+\\.(svg)\\?inline$": "<rootDir>/__mocks__/svgMock.js",
2020-08-17 03:52:02 +00:00
"^~/(.*)$": "<rootDir>/$1",
"^~~/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
2020-08-17 03:52:02 +00:00
"snapshotSerializers": [
"jest-serializer-vue"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/components/**/*.vue",
"<rootDir>/pages/*.vue"
],
"testURL": "http://localhost/"
2020-02-24 18:44:50 +00:00
}
}