mercury/package.json

46 lines
1.2 KiB
JSON
Raw Normal View History

2023-07-20 18:00:46 +02:00
{
"name": "mercury",
"version": "0.1.0",
"type": "module",
"description": "",
"keywords": [],
"author": "sam <sam@sleepycat.moe>",
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"scripts": {
2023-07-21 01:27:24 +02:00
"dev": "concurrently \"pnpm watch:build\" \"pnpm watch:dev\"",
"build": "swc src -d dist",
"watch:build": "swc src -w --out-dir dist",
"watch:dev": "nodemon --watch \"dist/**/*\" -e js ./dist/index.js",
"format": "prettier -w",
"lint": "eslint src/",
"typeorm": "typeorm",
"migrate": "pnpm build && typeorm migration:run -d ./dist/db/index.js"
2023-07-20 18:00:46 +02:00
},
"dependencies": {
2023-07-20 19:15:07 +02:00
"argon2": "^0.30.3",
2023-07-20 18:00:46 +02:00
"dotenv": "^16.3.1",
"express": "^4.18.2",
2023-07-21 01:08:06 +02:00
"fastify": "^4.20.0",
"glob": "^10.3.3",
2023-07-20 18:00:46 +02:00
"pg": "^8.11.1",
"reflect-metadata": "^0.1.13",
"tslog": "^4.8.2",
"typeorm": "^0.3.17",
"ulid": "^2.3.0"
},
"devDependencies": {
2023-07-21 01:27:24 +02:00
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.70",
2023-07-20 18:00:46 +02:00
"@types/express": "^4.17.17",
2023-07-21 01:27:24 +02:00
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
2023-07-20 18:00:46 +02:00
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"typescript": "5.1.6"
}
}