cleaned up package.json

This commit is contained in:
RemixDev 2022-02-09 14:13:48 +01:00
parent 3a0319dbc5
commit 6835f797e0
3 changed files with 748 additions and 1598 deletions

View File

@ -43,7 +43,7 @@ $ yarn install
To work on this webui you will need a working server as well. If you've downloaded this with deemix-gui you can run in a terminal positioned inside the deemix-gui folder the command
```bash
$ yarn install-all
$ yarn install-all-dev
```
To install all dependencies for all the modules (gui, server and webui)

View File

@ -4,14 +4,16 @@
"scripts": {
"clean": "rimraf public/js/bundle.js public/js/bundle.temp.js public/js/bundle.js.map",
"clean-temp": "rimraf public/js/bundle.temp.js",
"start": "yarn --cwd ../server start",
"start:gui": "yarn --cwd ../ start",
"build:js": "rollup -c",
"watch:js": "rollup -c -w",
"minify": "esbuild public/js/bundle.temp.js --outfile=public/js/bundle.js --minify",
"dev": "npm-run-all --parallel start watch:js",
"build": "npm-run-all --sequential clean build:js minify clean-temp",
"lint": "eslint src/**/*.{js,vue} --fix",
"start:server": "yarn --cwd ../server start",
"start:gui": "yarn --cwd ../ start",
"watch:js": "rollup -c -w",
"dev": "npm-run-all --parallel start:server watch:js",
"lint": "eslint src/**/*.{js,vue,mjs} --fix",
"lint-tests": "eslint src/**/*.js --fix",
"test": "jest",
"test-watch": "jest --watch",
@ -26,37 +28,35 @@
"vue": "2.6.14",
"vue-i18n": "8.25.0",
"vue-router": "3.5.2",
"vuex": "3.6.2"
"vuex": "3.6.2",
"postcss": "8.3.6",
"tailwindcss": "1.9.6",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.56.1",
"@rollup/plugin-alias": "3.1.5",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "3.0.0",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-svg": "2.0.0",
"rollup-plugin-vue": "4.2.0",
"esbuild": "0.12.19"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/plugin-transform-modules-commonjs": "7.15.0",
"@nuxtjs/eslint-config": "6.0.1",
"@rollup/plugin-alias": "3.1.5",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "3.0.0",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"babel-jest": "27.0.6",
"esbuild": "0.12.19",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"node-sass": "6.0.1",
"npm-run-all": "4.1.5",
"postcss": "8.3.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"rollup": "2.56.1",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-svg": "2.0.0",
"rollup-plugin-vue": "4.2.0",
"sass": "1.37.5",
"tailwindcss": "1.9.6",
"typescript": "4.3.5",
"vue-template-compiler": "2.6.14"
}

2300
yarn.lock

File diff suppressed because it is too large Load Diff