miiverse-api/package.json
William Oldham 5a1c453a84
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled
chore: update eslint common package
2025-02-01 20:59:11 +00:00

77 lines
1.8 KiB
JSON

{
"name": "miiverse-api",
"version": "2.0.0",
"description": "Miiverse API Server",
"main": "./dist/server.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "npm run lint && npm run clean && npx tsc && npx tsc-alias",
"clean": "rimraf ./dist",
"start": "node --enable-source-maps .",
"test": "ts-node test/test.ts",
"dev": "npm run build && npm run start"
},
"keywords": [],
"author": "Pretendo Network",
"contributors": [
{
"name": "Jemma Poffinbarger",
"email": "contact@jemsoftware.dev",
"url": "https://jemsoftware.dev/"
},
{
"name": "Jonathan Barrow",
"email": "jonbarrow1998@gmail.com",
"url": "https://jonbarrow.dev/"
}
],
"license": "AGPL-3.0",
"dependencies": {
"@pretendonetwork/grpc": "^1.0.6",
"aws-sdk": "^2.1204.0",
"bmp-js": "^0.1.0",
"colors": "^1.4.0",
"crc": "^4.3.2",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-subdomain": "^1.0.5",
"fs-extra": "^9.0.0",
"moment": "^2.24.0",
"mongoose": "^6.10.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nice-grpc": "^2.0.0",
"node-rsa": "^1.0.8",
"node-snowflake": "0.0.1",
"pako": "^1.0.11",
"pngjs": "^5.0.0",
"tga": "^1.0.3",
"xmlbuilder": "^15.1.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@pretendonetwork/eslint-config": "^0.0.6",
"@types/bmp-js": "^0.1.2",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/newman": "^5.3.4",
"@types/node-rsa": "^1.1.1",
"@types/pako": "^2.0.0",
"@types/pngjs": "^6.0.1",
"axios": "^1.3.6",
"eslint": "^9.18.0",
"newman": "^6.0.0",
"ora": "^5.4.1",
"postman-collection": "^4.1.7",
"rimraf": "^6.0.1",
"table": "^6.8.1",
"ts-unused-exports": "^9.0.4",
"tsc-alias": "^1.8.5",
"typescript": "^5.0.4",
"xmlbuilder2": "^3.1.0"
}
}