Advertisement
Guest User

package.json

a guest
Nov 20th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.55 KB | None | 0 0
  1. {
  2.   "name": "ui",
  3.   "version": "1.0.0",
  4.   "private": true,
  5.   "scripts": {
  6.     "dev": "nuxt",
  7.     "build": "nuxt build",
  8.     "start": "nuxt start",
  9.     "generate": "nuxt generate",
  10.     "lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
  11.     "lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
  12.     "lint:prettier": "prettier --check .",
  13.     "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
  14.     "lintfix": "prettier --write --list-different . && npm run lint:js -- --fix && npm run lint:style -- --fix",
  15.     "prepare": "husky install",
  16.     "test": "jest"
  17.   },
  18.   "lint-staged": {
  19.     "*.{js,vue}": "eslint --cache",
  20.     "*.{css,scss,sass,html,vue}": "stylelint",
  21.     "*.**": "prettier --check --ignore-unknown"
  22.   },
  23.   "dependencies": {
  24.     "@fortawesome/fontawesome-svg-core": "^6.4.2",
  25.     "@fortawesome/free-brands-svg-icons": "^6.4.2",
  26.     "@fortawesome/free-regular-svg-icons": "^6.4.2",
  27.     "@fortawesome/free-solid-svg-icons": "^6.4.2",
  28.     "@fortawesome/vue-fontawesome": "^2.0.10",
  29.     "@nuxtjs/axios": "^5.13.6",
  30.     "@nuxtjs/pwa": "^3.3.5",
  31.     "@nuxtjs/svg": "^0.4.1",
  32.     "buefy": "^0.9.25",
  33.     "core-js": "^3.33.1",
  34.     "cryptocurrency-icons": "^0.18.1",
  35.     "nuxt": "^2.17.2",
  36.     "qs": "^6.11.2",
  37.     "vue": "^2.7.15",
  38.     "vue-server-renderer": "^2.7.15",
  39.     "vue-template-compiler": "^2.7.15",
  40.     "vue-virtual-scroll-list": "^2.3.5"
  41.   },
  42.   "devDependencies": {
  43.     "@babel/eslint-parser": "^7.22.15",
  44.     "@commitlint/cli": "^18.0.0",
  45.     "@commitlint/config-conventional": "^18.0.0",
  46.     "@nuxtjs/eslint-config": "^12.0.0",
  47.     "@nuxtjs/eslint-module": "^3.1.0",
  48.     "@nuxtjs/router": "^1.7.0",
  49.     "@nuxtjs/style-resources": "^1.2.1",
  50.     "@nuxtjs/stylelint-module": "^4.2.1",
  51.     "@vue/test-utils": "^1.3.6",
  52.     "@vueuse/core": "^10.6.1",
  53.     "@vueuse/nuxt": "^10.6.1",
  54.     "babel-core": "7.0.0-bridge.0",
  55.     "babel-jest": "^29.7.0",
  56.     "eslint": "^8.52.0",
  57.     "eslint-config-prettier": "^9.0.0",
  58.     "eslint-plugin-jest": "^27.4.3",
  59.     "eslint-plugin-nuxt": "^4.0.0",
  60.     "eslint-plugin-vue": "^9.18.0",
  61.     "husky": "^8.0.3",
  62.     "jest": "^29.7.0",
  63.     "jest-environment-jsdom": "^29.7.0",
  64.     "lint-staged": "^15.0.2",
  65.     "postcss-html": "^1.5.0",
  66.     "prettier": "^3.0.3",
  67.     "pug": "^3.0.2",
  68.     "pug-plain-loader": "^1.1.0",
  69.     "sass": "^1.69.4",
  70.     "sass-loader": "^10.4.1",
  71.     "stylelint": "^15.11.0",
  72.     "stylelint-config-recommended-vue": "^1.5.0",
  73.     "stylelint-config-standard": "^34.0.0",
  74.     "vue-jest": "^3.0.7"
  75.   }
  76. }
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement