Commits (4)
-
Rosanny Sihombing authoredf66379b2
-
Rosanny Sihombing authoredd718c799
-
Rosanny Sihombing authored8866e352
-
Rosanny Sihombing authored
Refactor See merge request !89
425311b9
.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 @@ |
"url": "https://transfer.hft-stuttgart.de/gitlab/m4lab_tv1/project-page.git" | ||
}, | ||
"scripts": { | ||
"clean-code": "ts-standard --fix", | ||
"check-types": "tsc --noEmit", | ||
"test": "jest", | ||
"start:dev": "nodemon ./src/app.ts", | ||
"start": "nodemon ./built/app.js", | ||
"build": "tsc -build", | ||
"clean": "tsc -build --clean", | ||
"check-types": "tsc", | ||
"test": "jest", | ||
"cleancode": "ts-standard --fix" | ||
"clean": "rm -rf ./built", | ||
"build": "babel src --out-dir built --extensions .ts --copy-files" | ||
}, | ||
"dependencies": { | ||
"async": "^3.2.0", | ||
... | ... | @@ -39,6 +39,10 @@ |
}, | ||
"license": "MIT", | ||
"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/compression": "^1.7.0", | ||
"@types/cookie-parser": "^1.4.2", | ||
... | ... | @@ -49,6 +53,7 @@ |
"@types/jest": "^28.1.2", | ||
"@types/morgan": "^1.9.2", | ||
"@types/passport": "^1.0.6", | ||
"babel-preset-minify": "^0.5.2", | ||
"jest": "^28.1.1", | ||
"nodemon": "^2.0.9", | ||
"ts-jest": "^28.0.5", | ||
... | ... |