BOSS/package.json
2023-08-17 22:32:40 -04:00

38 lines
958 B
JSON

{
"name": "boss",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"lint": "npx eslint .",
"build": "npm run lint && npm run clean && npx tsc && npx tsc-alias",
"clean": "rimraf ./dist",
"start": "node --enable-source-maps ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"boss-js": "github:PretendoNetwork/boss-js",
"colors": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-subdomain": "^1.0.5",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"axios": "^0.27.2",
"eslint": "^8.47.0",
"fs-extra": "^10.1.0",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6",
"xmlbuilder2": "^3.0.2"
}
}