mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 16:57:22 +00:00
* build(rest-passthrough): Use typescript to build It doesn't make a lot of sense for something like this to use SWC to build + this needed typescript with a tsconfig anyway for a typecheck * Add tsconfig * Remove .swcrc and copy tsconfig in docker --------- Co-authored-by: Awesome Stickz <awesome@stickz.dev>
27 lines
650 B
JSON
27 lines
650 B
JSON
{
|
|
"name": "rest-passthrough",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"packageManager": "yarn@4.6.0",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start:dev": "yarn exec node -r dotenv/config dist/server.js",
|
|
"start:prod": "yarn exec node ./dist/server.js",
|
|
"release": "cliff-jumper"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/rest": "21.0.0",
|
|
"@fastify/env": "^5.0.2",
|
|
"@fastify/helmet": "^13.0.1",
|
|
"@fastify/multipart": "^9.0.3",
|
|
"fastify": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@favware/cliff-jumper": "^6.0.0",
|
|
"@types/node": "^24.3.1",
|
|
"dotenv": "^17.2.1",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|