autobaan/package.json

58 lines
1.7 KiB
JSON

{
"name": "autobaan",
"version": "1.0.0",
"type": "module",
"description": "",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"preinstall": "export CXX=g++-12",
"clean": "rm -r ./dist || true",
"build": "rollup -c src/server/rollup.config.js",
"test": "jest",
"test:unit": "jest tests/unit/*",
"test:unit:clean": "npm run test:clear-cache && npm run test:unit",
"test:integration": "jest tests/integration/*",
"test:integration:clean": "npm run test:clear-cache && npm run test:integration",
"test:clear-cache": "jest --clearCache",
"lint": "eslint src/ --ext ts",
"prettier": "prettier src tests -w",
"local": "npx ts-node src/local.ts",
"docker:start": "docker compose -f docker/docker-compose.yml up",
"docker:stop": "docker compose -f docker/docker-compose.yml down"
},
"author": "Collin Duncan",
"license": "ISC",
"dependencies": {
"argon2": "^0.30.1",
"axios": "^1.2.0",
"dayjs": "^1.11.6",
"mysql": "^2.18.1",
"node-cron": "^3.0.2",
"puppeteer": "^19.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.3",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.9",
"@types/node-cron": "^3.0.6",
"@types/puppeteer": "^5.4.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-jest": "^29.2.1",
"eslint": "^8.27.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"rollup": "^3.2.5",
"rollup-plugin-natives": "^0.7.6",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}