mirror of
https://github.com/labring/laf.git
synced 2026-01-25 16:07:45 +00:00
31 lines
825 B
JSON
31 lines
825 B
JSON
{
|
|
"name": "log-server",
|
|
"version": "1.0.0-beta.11",
|
|
"description": "the function log server for laf",
|
|
"main": "./dist/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development npm run start",
|
|
"build": "tsc -p tsconfig.json",
|
|
"watch": "tsc -p tsconfig.json -w",
|
|
"start": "NODE_ENV=production node dist/index.js",
|
|
"prettier": "npx prettier --write ./src"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/jsonwebtoken": "^9.0.2",
|
|
"@types/mongodb-uri": "^0.9.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"database-proxy": "^1.0.0-beta.2",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"jsonwebtoken": "^9.0.1",
|
|
"log4js": "^6.9.1",
|
|
"mongodb": "^5.6.0",
|
|
"mongodb-uri": "^0.9.7"
|
|
}
|
|
}
|