proxy/apps/node/package.json

23 lines
527 B
JSON
Raw Normal View History

2023-11-14 17:56:44 +00:00
{
"name": "node",
"version": "1.0.0",
"description": "A node for the proxy",
"main": "dist/index.js",
"author": "fascinated",
"license": "MIT",
"scripts": {
2023-11-16 12:16:52 +00:00
"build": "tsup src/index.ts --format cjs,esm --dts",
2023-11-14 17:56:44 +00:00
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"axios": "^1.6.1",
2023-11-16 12:32:38 +00:00
"dotenv": "^16.3.1",
"express": "^4.18.2",
2023-11-14 17:56:44 +00:00
"server": "workspace:*",
"ts-node": "^10.9.1",
2023-11-16 12:32:38 +00:00
"typescript": "^5.2.2",
"utils": "workspace:*"
2023-11-14 17:56:44 +00:00
}
}