UNPKG

a2r

Version:
91 lines (90 loc) 3.2 kB
{ "name": "a2r", "version": "2.9.5", "description": "A2R Framework", "engines": { "node": ">=16" }, "main": "./index.js", "types": "./index.d.ts", "scripts": { "build": "rm -rf ./dist;tsc", "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", "dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpile-only ./index.ts", "dev-help": "NODE_ENV=development ts-node-dev --debug --respawn --transpile-only ./utils/a2r.ts", "lint": "npx eslint --config ./.eslintrc ./**/*.ts", "start": "node ./dist/index.js", "test": "jest", "test-clear": "rm -rf coverage;rm -rf dist", "test-dev": "NODE_ENV=development npx jest --watch", "test-coverage": "jest --coverage", "test-coverage-dev": "NODE_ENV=development jest --coverage --watchAll", "test-full": "npm run test-clear;npm run build;npm run test;npm run test-coverage;npm run lint;npm audit;npm run docs", "upload": "npm run build;cp -r ./templates/ ./dist/templates;cd dist;npm i;npm publish --access=public;" }, "bin": { "a2r": "./utils/a2r.js" }, "repository": { "type": "git", "url": "git+https://github.com/acttoreact/a2r.git" }, "keywords": [ "acttoreact", "a2r" ], "author": "Act to React (https://a2r.com/)", "license": "MIT", "homepage": "https://a2r.com/", "dependencies": { "@a2r/fs": "^1.5.1", "@a2r/telemetry": "^1.1.3", "@types/express": "^4.17.13", "bcryptjs": "^2.4.3", "chalk": "^4.1.2", "chokidar": "^3.5.2", "command-line-args": "^5.2.0", "command-line-commands": "^3.0.2", "command-line-usage": "^6.1.1", "deepmerge": "^4.2.2", "execa": "^5.1.1", "express": "^4.17.1", "get-port": "^5.1.1", "js-cookie": "^3.0.1", "js-yaml": "^4.1.0", "mongodb": "^4.1.2", "shortid": "^2.2.16", "socket.io": "^4.2.0", "socket.io-client": "^4.2.0", "typescript": "^4.4.3", "universal-cookie": "^4.0.4" }, "devDependencies": { "@types/bcryptjs": "^2.4.2", "@types/command-line-args": "^5.2.0", "@types/command-line-commands": "^2.0.1", "@types/command-line-usage": "^5.0.2", "@types/jest": "^27.0.2", "@types/js-cookie": "^3.0.0", "@types/mongodb": "^4.0.7", "@types/node": "^16.10.2", "@types/rimraf": "^3.0.2", "@types/shortid": "0.0.29", "@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/parser": "^5.10.0", "babel-jest": "^27.2.4", "coveralls": "^3.1.1", "eslint": "^8.7.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.24.2", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-react": "^7.26.1", "jest": "^27.2.4", "snyk": "^1.730.0", "ts-jest": "^27.0.5", "ts-node-dev": "^1.1.8", "typedoc": "^0.22.5", "wait-for-expect": "^3.0.2" } }