12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "node-typescript-boilerplate",
- "version": "0.0.1",
- "description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
- "type": "module",
- "engines": {
- "node": ">= 18.8 <19"
- },
- "devDependencies": {
- "@types/express": "^4.17.21",
- "@types/jest": "~29.5",
- "@types/node": "~18",
- "@types/node-cron": "^3.0.11",
- "@typescript-eslint/eslint-plugin": "^7.1.0",
- "@typescript-eslint/parser": "~6.2",
- "eslint": "~8.46",
- "eslint-config-prettier": "~9.0",
- "eslint-plugin-jest": "~27.2",
- "eslint-plugin-prettier": "^5.1.1",
- "jest": "~29.6",
- "prettier": "~3.0",
- "rimraf": "~5.0",
- "ts-api-utils": "~1.0",
- "ts-jest": "~29.1",
- "tsc-alias": "1.8.8",
- "typescript": "~5.1.0",
- "typescript-eslint": "^7.1.0"
- },
- "scripts": {
- "prestart": "npm run build",
- "start:test": "yarn build && node build/src/test/test.js",
- "start": "node build/src/main.js",
- "typechain-generate": "yarn typechain --target=ethers-v6 abis/*.json --out-dir src/contract",
- "clean": "rimraf coverage build tmp",
- "prebuild": "yarn prisma generate",
- "build": "tsc -p tsconfig.json && tsc-alias",
- "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
- "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
- "lint": "eslint . --ext .ts --ext .mts",
- "test": "jest --coverage",
- "prettier": "prettier --config .prettierrc --write .",
- "test:watch": "jest --watch"
- },
- "license": "Apache-2.0",
- "dependencies": {
- "@prisma/client": "5.10.2",
- "@typechain/ethers-v6": "^0.5.1",
- "axios": "^1.6.7",
- "ethers": "^6.11.1",
- "express": "^4.18.3",
- "node-cron": "^3.0.3",
- "polly-js": "^1.8.3",
- "prisma": "^5.10.2",
- "tslib": "~2.6.2",
- "tslog": "^4.9.2",
- "typechain": "^8.3.2"
- },
- "volta": {
- "node": "18.12.1"
- }
- }
|