UNPKG

ah-resque-ui

Version:

A resque administration website for actionhero

69 lines (68 loc) 1.85 kB
{ "author": "Evan Tahler <evantahler@gmail.com>", "name": "ah-resque-ui", "description": "A resque administration website for actionhero", "version": "3.0.1", "license": "Apache-2.0", "repository": { "type": "git", "url": "git://github.com/actionhero/ah-resque-ui.git" }, "keywords": [ "resque", "ui", "website", "tasks", "background", "job", "react" ], "engines": { "node": ">=12.0.0" }, "peerDependencies": { "actionhero": ">=28.0.1" }, "devDependencies": { "@babel/core": "^7.14.8", "@babel/preset-env": "^7.14.9", "@babel/preset-react": "^7.14.5", "@nivo/axes": "^0.69.1", "@nivo/bump": "^0.69.1", "@nivo/core": "^0.69.0", "@types/jest": "^27.0.1", "@types/react": "^17.0.15", "actionhero": "^28.0.1", "babel-loader": "^8.2.2", "babel-polyfill": "^6.26.0", "jest": "^27.1.0", "prettier": "^2.3.2", "react": "^17.0.2", "react-bootstrap": "^2.0.1", "react-dom": "^17.0.2", "react-router-dom": "^5", "react-router-bootstrap": "^0.25.0", "ts-jest": "^27.0.4", "ts-node-dev": "^1.1.8", "typescript": "^4.3.5", "webpack": "^5.47.1", "webpack-cli": "^4.7.2" }, "scripts": { "dev": "ts-node-dev --no-deps --transpile-only ./src/server.ts", "start": "node ./dist/server.js", "lint": "prettier --check src public-src __tests__ '!public-src/public'", "pretest": "npm run prepare", "test": "jest", "build": "npm run ui:build && npm run api:build", "ui:watch": "webpack --progress --colors --watch --mode development", "ui:build": "webpack --mode production", "api:build": "rm -rf dist && ./node_modules/.bin/tsc --declaration", "prepare": "npm run lint && npm run build" }, "jest": { "transform": { "^.+\\.ts?$": "ts-jest" } } }