easynode/server/package.json
2024-07-11 12:13:33 +08:00

62 lines
1.5 KiB
JSON

{
"name": "server",
"version": "0.0.1",
"description": "easynode-server",
"bin": "./bin/www",
"pkg": {
"outputPath": "dist",
"scripts": "./*",
"assets": "./*"
},
"scripts": {
"local": "cross-env EXEC_ENV=local nodemon ./app/index.js",
"prod": "cross-env EXEC_ENV=production nodemon ./app/index.js",
"start": "node ./app/index.js",
"pkgwin": "pkg . -t node20-win-x64",
"pkglinux:x86": "pkg . -t node20-linux-x64",
"pkglinux:arm": "pkg . -t node20-linux-arm64"
},
"keywords": [],
"author": "",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"*.json"
]
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@seald-io/nedb": "^4.0.4",
"axios": "^1.7.2",
"consola": "^3.2.3",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"global": "^4.4.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.1",
"koa-jwt": "^4.0.4",
"koa-router": "^12.0.1",
"koa-sslify": "^5.0.1",
"koa-static": "^5.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"log4js": "^6.9.1",
"node-os-utils": "^1.3.7",
"node-rsa": "^1.1.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.14",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"ssh2": "^1.15.0",
"ssh2-sftp-client": "^10.0.3"
},
"devDependencies": {
"eslint": "^9.6.0",
"nodemon": "^3.1.4",
"pkg": "5.8"
}
}