2024-04-29 21:26:04 +02:00
|
|
|
{
|
|
|
|
"name": "deguapp-api",
|
|
|
|
"version": "2.0.0",
|
|
|
|
"description": "DeguApp REST API",
|
|
|
|
"main": "dist/app.js",
|
|
|
|
"bin": "dist/app.js",
|
|
|
|
"types": "dist/app.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"start": "npm run start:prod",
|
|
|
|
"start:dev": "tsx watch src/server.ts",
|
|
|
|
"start:prod": "node dist/server.js",
|
|
|
|
"tsc": "tsc -p .",
|
|
|
|
"clean": "rimraf dist",
|
|
|
|
"copy-assets": "ts-node src/utils/copyAssets",
|
|
|
|
"build": "npm-run-all clean tsc copy-assets",
|
2024-04-30 00:50:27 +02:00
|
|
|
"test": "npx jest . --runInBand",
|
2024-04-29 21:26:04 +02:00
|
|
|
"format": "npx prettier --write ."
|
|
|
|
},
|
|
|
|
"author": "Filip Rojek",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"colors": "1.4.0",
|
|
|
|
"dotenv": "^16.4.5",
|
|
|
|
"express": "^4.19.2",
|
|
|
|
"fs-extra": "^10.0.0",
|
|
|
|
"inquirer": "^8.1.2",
|
|
|
|
"morgan": "^1.10.0",
|
|
|
|
"pad": "^3.2.0",
|
|
|
|
"path": "^0.12.7"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-30 00:50:27 +02:00
|
|
|
"@biomejs/biome": "1.7.1",
|
2024-04-29 21:26:04 +02:00
|
|
|
"@types/chai": "^4.2.22",
|
|
|
|
"@types/express": "^4.17.21",
|
|
|
|
"@types/fs-extra": "^9.0.13",
|
|
|
|
"@types/inquirer": "^8.1.3",
|
2024-04-30 00:50:27 +02:00
|
|
|
"@types/jest": "^29.5.12",
|
2024-04-29 21:26:04 +02:00
|
|
|
"@types/mocha": "^9.0.0",
|
|
|
|
"@types/morgan": "^1.9.9",
|
|
|
|
"@types/shelljs": "^0.8.11",
|
2024-04-30 00:50:27 +02:00
|
|
|
"@types/supertest": "^6.0.2",
|
2024-04-29 21:26:04 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.5.0",
|
|
|
|
"@typescript-eslint/parser": "^5.5.0",
|
|
|
|
"chai": "^4.3.4",
|
|
|
|
"eslint": "^8.3.0",
|
|
|
|
"http": "^0.0.1-security",
|
2024-04-30 00:50:27 +02:00
|
|
|
"jest": "^29.7.0",
|
2024-04-29 21:26:04 +02:00
|
|
|
"mocha": "^9.1.3",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"prettier": "^2.7.1",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"shelljs": "^0.8.5",
|
2024-04-30 00:50:27 +02:00
|
|
|
"supertest": "^7.0.0",
|
|
|
|
"ts-jest": "^29.1.2",
|
2024-04-29 21:26:04 +02:00
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"tsx": "^4.7.3",
|
|
|
|
"typescript": "^4.5.2"
|
|
|
|
},
|
2024-04-30 00:50:27 +02:00
|
|
|
"jest": {
|
|
|
|
"preset": "ts-jest",
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"./tests/_setupFile.ts"
|
|
|
|
]
|
|
|
|
}
|
2024-04-29 21:26:04 +02:00
|
|
|
}
|