UNPKG

@icebro/actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

107 lines (106 loc) 2.87 kB
{ "author": "Evan Tahler <evantahler@gmail.com>", "name": "@icebro/actionhero", "description": "The reusable, scalable, and quick node.js API server for stateless and stateful applications", "version": "28.1.7-3", "homepage": "http://www.actionherojs.com", "license": "Apache-2.0", "repository": { "type": "git", "url": "git://github.com/actionhero/actionhero.git" }, "main": "dist/index", "types": "dist/index", "keywords": [ "api", "realtime", "socket", "http", "https", "web", "game", "cluster", "soa", "action", "task", "delay", "service", "tcp", "background", "framework", "typescript" ], "engines": { "node": ">=12.0.0" }, "dependencies": { "@types/ioredis": "^4.28.1", "browser_fingerprint": "^2.0.3", "commander": "^8.3.0", "dot-prop": "^6.0.1", "etag": "^1.8.1", "formidable": "^2.0.1", "glob": "^7.2.0", "ioredis": "^4.28.2", "mime": "^3.0.0", "node-resque": "^9.1.5", "primus": "^8.0.5", "qs": "^6.10.1", "uuid": "^8.3.2", "winston": "^3.3.3", "ws": "^8.3.0", "yargs": "^17.3.0" }, "devDependencies": { "@types/etag": "^1.8.1", "@types/formidable": "^2.0.0", "@types/glob": "^7.2.0", "@types/ioredis-mock": "^5.6.0", "@types/jest": "^27.0.3", "@types/mime": "^2.0.3", "@types/node": "^17.0.1", "@types/primus": "^7.3.6", "@types/puppeteer": "^5.4.4", "@types/qs": "^6.9.7", "@types/request-promise-native": "^1.0.18", "@types/uuid": "^8.3.3", "ioredis-mock": "^6.0.0", "jest": "^27.4.3", "prettier": "^2.5.0", "puppeteer": "^13.0.0", "request": "^2.88.2", "request-promise-native": "^1.0.9", "ts-jest": "^27.0.7", "ts-node-dev": "^1.1.8", "type-fest": "^2.8.0", "typedoc": "^0.22.10", "typescript": "^4.5.2" }, "bin": { "actionhero": "dist/bin/actionhero.js" }, "jest": { "maxWorkers": "50%", "testPathIgnorePatterns": [ "<rootDir>/__tests__/testPlugin", "<rootDir>/__tests__/testCliCommands", "<rootDir>/tmp" ], "transform": { "^.+\\.ts?$": "ts-jest" } }, "scripts": { "postinstall": "echo 'To generate a new actionhero project, run \"npx actionhero generate\"'", "test": "jest", "prepare": "npm run build && npm run docs", "pretest": "npm run lint && npm run build", "dev": "ts-node-dev --transpile-only --no-deps ./src/server", "debug": "tsc && ts-node-dev --transpile-only --no-deps --inspect -- ./src/server ", "start": "node ./dist/server.js", "build": "rm -rf dist && ./node_modules/.bin/tsc --sourceMap false --declaration", "docs": "typedoc --out docs --theme default src/index.ts", "lint": "prettier --check src __tests__", "pretty": "prettier --write src __tests__" } }