38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "nextnet",
|
|
"version": "0.1.0",
|
|
"description": "Yet another dashboard to manage portforwarding technologies",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "cd out && node --enable-source-maps index.js",
|
|
"dev": "nodemon --watch src --ext ts,js,mjs,json --exec \"tsc && cd out && node --enable-source-maps index.js\""
|
|
},
|
|
"keywords": [],
|
|
"author": "greysoh",
|
|
"license": "BSD-3-Clause",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.2.0",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/node": "^20.12.7",
|
|
"@types/ssh2": "^1.15.0",
|
|
"@types/ws": "^8.5.10",
|
|
"eslint": "^8.57.0",
|
|
"globals": "^15.2.0",
|
|
"nodemon": "^3.0.3",
|
|
"pino-pretty": "^11.0.0",
|
|
"prettier": "^3.2.5",
|
|
"prisma": "^5.13.0",
|
|
"typescript": "^5.3.3",
|
|
"typescript-eslint": "^7.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/websocket": "^10.0.1",
|
|
"@prisma/client": "^5.13.0",
|
|
"bcrypt": "^5.1.1",
|
|
"fastify": "^4.26.2",
|
|
"node-ssh": "^13.2.0"
|
|
}
|
|
}
|