proxy/apps/node/package.json
Liam 805e698668
All checks were successful
Publish Docker Images / docker (push) Successful in 40s
ples work
2023-11-16 12:16:52 +00:00

21 lines
476 B
JSON

{
"name": "node",
"version": "1.0.0",
"description": "A node for the proxy",
"main": "dist/index.js",
"author": "fascinated",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"axios": "^1.6.1",
"server": "workspace:*",
"utils": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}