diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-05 19:37:52 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-05 19:37:52 +0200 |
commit | 4da3272bf7893760f6710c9a1ec7de02358136e6 (patch) | |
tree | 92eb961bf20a7ef9f7c0650ba288baf512986fca /packages/client/package.json | |
parent | 4e3074dfd752dd52951d300090c642aee76cfaac (diff) |
Reorganized into a monorepo, refactored the frontend again, goodbye Parcel
Diffstat (limited to 'packages/client/package.json')
-rw-r--r-- | packages/client/package.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/client/package.json b/packages/client/package.json new file mode 100644 index 0000000..5ff4b53 --- /dev/null +++ b/packages/client/package.json @@ -0,0 +1,40 @@ +{ + "name": "client", + "version": "1.0.0", + "private": true, + "author": "HampusMat", + "license": "MIT", + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build --dest ../../dist", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "@popperjs/core": "^2.9.2", + "bootstrap": "5.0.0-beta3", + "core-js": "^3.6.5", + "date-fns": "^2.22.1", + "highlight.js": "^11.0.1", + "js-yaml": "^4.1.0", + "vue": "^3.0.0", + "vue-loading-overlay": "^4.0.3", + "vue-router": "^4.0.0-0" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "~4.5.0", + "@vue/cli-plugin-eslint": "~4.5.0", + "@vue/cli-plugin-router": "~4.5.0", + "@vue/cli-service": "~4.5.0", + "@vue/compiler-sfc": "^3.0.0", + "@vue/eslint-config-standard": "^5.1.2", + "babel-eslint": "^10.1.0", + "eslint": "^6.7.2", + "eslint-plugin-import": "^2.20.2", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-promise": "^4.2.1", + "eslint-plugin-standard": "^4.0.0", + "eslint-plugin-vue": "^7.0.0", + "sass": "^1.26.5", + "sass-loader": "^8.0.2" + } +} |