Merge branch 'devel' into 'testing'
Refactor See merge request !89
.babelrc
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
| ... | @@ -14,13 +14,13 @@ | ... | @@ -14,13 +14,13 @@ |
| "url": "https://transfer.hft-stuttgart.de/gitlab/m4lab_tv1/project-page.git" | "url": "https://transfer.hft-stuttgart.de/gitlab/m4lab_tv1/project-page.git" | ||
| }, | }, | ||
| "scripts": { | "scripts": { | ||
| "clean-code": "ts-standard --fix", | |||
| "check-types": "tsc --noEmit", | |||
| "test": "jest", | |||
| "start:dev": "nodemon ./src/app.ts", | "start:dev": "nodemon ./src/app.ts", | ||
| "start": "nodemon ./built/app.js", | "start": "nodemon ./built/app.js", | ||
| "build": "tsc -build", | "clean": "rm -rf ./built", | ||
| "clean": "tsc -build --clean", | "build": "babel src --out-dir built --extensions .ts --copy-files" | ||
| "check-types": "tsc", | |||
| "test": "jest", | |||
| "cleancode": "ts-standard --fix" | |||
| }, | }, | ||
| "dependencies": { | "dependencies": { | ||
| "async": "^3.2.0", | "async": "^3.2.0", | ||
| ... | @@ -39,6 +39,10 @@ | ... | @@ -39,6 +39,10 @@ |
| }, | }, | ||
| "license": "MIT", | "license": "MIT", | ||
| "devDependencies": { | "devDependencies": { | ||
| "@babel/cli": "^7.17.10", | |||
| "@babel/core": "^7.18.5", | |||
| "@babel/preset-env": "^7.18.2", | |||
| "@babel/preset-typescript": "^7.17.12", | |||
| "@types/async": "^3.2.6", | "@types/async": "^3.2.6", | ||
| "@types/compression": "^1.7.0", | "@types/compression": "^1.7.0", | ||
| "@types/cookie-parser": "^1.4.2", | "@types/cookie-parser": "^1.4.2", | ||
| ... | @@ -49,6 +53,7 @@ | ... | @@ -49,6 +53,7 @@ |
| "@types/jest": "^28.1.2", | "@types/jest": "^28.1.2", | ||
| "@types/morgan": "^1.9.2", | "@types/morgan": "^1.9.2", | ||
| "@types/passport": "^1.0.6", | "@types/passport": "^1.0.6", | ||
| "babel-preset-minify": "^0.5.2", | |||
| "jest": "^28.1.1", | "jest": "^28.1.1", | ||
| "nodemon": "^2.0.9", | "nodemon": "^2.0.9", | ||
| "ts-jest": "^28.0.5", | "ts-jest": "^28.0.5", | ||
| ... | ... |
Please register or sign in to comment