api-client/package.json

102 lines
2.5 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": {
"predev": "node build.js --dev",
"dev": "nuxt",
"prebuild": "node build.js",
"build": "nuxt build",
"start": "nuxt start",
"pregenerate": "node build.js",
"generate": "nuxt generate",
"pretty-quick": "pretty-quick --staged --pattern \"**/*.*(html|js|json|vue)\"",
2020-08-17 03:52:02 +00:00
"test": "jest"
2020-02-24 18:44:50 +00:00
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick"
}
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": false,
"printWidth": 100
},
2020-02-24 18:44:50 +00:00
"dependencies": {
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/gtm": "^2.3.2",
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",
2020-07-24 04:35:54 +00:00
"esprima": "^4.0.1",
"firebase": "^7.23.0",
"graphql": "^15.3.0",
"graphql-language-service-interface": "^2.4.2",
2020-09-21 15:34:55 +00:00
"nuxt": "^2.14.6",
"nuxt-i18n": "^6.15.1",
2020-03-11 12:20:04 +00:00
"paho-mqtt": "^1.1.0",
2020-10-01 00:56:13 +00:00
"socket.io-client": "^2.3.1",
"socketio-wildcard": "^2.0.0",
2020-02-24 18:44:50 +00:00
"v-tooltip": "^2.0.3",
"vuejs-auto-complete": "^0.9.0",
2020-10-06 00:50:06 +00:00
"vuex-persist": "^3.1.3",
2020-10-02 00:29:16 +00:00
"yargs-parser": "^20.2.1"
2020-02-24 18:44:50 +00:00
},
"devDependencies": {
"@babel/core": "^7.11.6",
2020-09-01 00:34:43 +00:00
"@babel/preset-env": "^7.11.5",
2020-09-22 17:06:37 +00:00
"@nuxtjs/color-mode": "^1.1.1",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.1.2",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/tailwindcss": "^3.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@vue/test-utils": "^1.1.0",
2020-08-17 23:38:10 +00:00
"babel-core": "^7.0.0-bridge.0",
2020-10-07 00:17:09 +00:00
"babel-jest": "^26.5.2",
2020-10-11 07:07:32 +00:00
"eslint": "^7.11.0",
2020-10-06 00:50:06 +00:00
"eslint-plugin-vue": "^7.0.1",
2020-09-07 09:02:30 +00:00
"husky": "^4.3.0",
2020-10-07 00:17:09 +00:00
"jest": "^26.5.2",
2020-08-17 03:52:02 +00:00
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
2020-10-11 07:07:32 +00:00
"sass-loader": "^10.0.3",
"vue-jest": "^3.0.7"
2020-08-17 03:52:02 +00:00
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"watchman": false,
"moduleNameMapper": {
"^~/(.*)$": "<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
}
}