Advertisement
Guest User

Untitled

a guest
May 15th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.68 KB | None | 0 0
  1. // package.json
  2. {
  3.   "name": "diploma",
  4.   "version": "0.0.0",
  5.   "private": true,
  6.   "scripts": {
  7.     "dev": "vite",
  8.     "build": "run-p type-check build-only",
  9.     "preview": "vite preview",
  10.     "build-only": "vite build",
  11.     "type-check": "vue-tsc --noEmit",
  12.     "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
  13.     "format": "prettier --write src/"
  14.   },
  15.   "dependencies": {
  16.     "@babylonjs/core": "^6.1.0",
  17.     "@babylonjs/loaders": "^6.1.0",
  18.     "@fortawesome/fontawesome-svg-core": "^6.3.0",
  19.     "@fortawesome/free-regular-svg-icons": "^6.3.0",
  20.     "@fortawesome/free-solid-svg-icons": "^6.3.0",
  21.     "@fortawesome/vue-fontawesome": "^3.0.3",
  22.     "@types/draco3d": "^1.4.2",
  23.     "@types/uuid": "^9.0.1",
  24.     "pinia": "^2.0.33",
  25.     "uuid": "^9.0.0",
  26.     "vue": "^3.2.47",
  27.     "vue-router": "^4.1.6",
  28.     "vuetify": "^3.1.8"
  29.   },
  30.   "devDependencies": {
  31.     "@mdi/font": "^7.1.96",
  32.     "@rushstack/eslint-patch": "^1.2.0",
  33.     "@types/node": "^18.15.11",
  34.     "@vitejs/plugin-vue": "^4.0.0",
  35.     "@vue/eslint-config-prettier": "^7.1.0",
  36.     "@vue/eslint-config-typescript": "^11.0.2",
  37.     "@vue/tsconfig": "^0.3.2",
  38.     "eslint": "^8.34.0",
  39.     "eslint-plugin-vue": "^9.9.0",
  40.     "npm-run-all": "^4.1.5",
  41.     "prettier": "^2.8.4",
  42.     "typescript": "^5.0.4",
  43.     "vite": "^4.1.4",
  44.     "vue-tsc": "^1.2.0"
  45.   }
  46. }
  47.  
  48. // tsconfig.json
  49. {
  50.   "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  51.   "compilerOptions": {
  52.     "strict": true,
  53.     "baseUrl": ".",
  54.     "types": [
  55.       "node"
  56.     ],
  57.     "paths": {
  58.       "@/*": ["./src/*"]
  59.     }
  60.   },
  61.  
  62.   "references": [
  63.     {
  64.       "path": "./tsconfig.node.json"
  65.     }
  66.   ]
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement