123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "node-ts",
- "version": "0.0.1",
- "description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
- "type": "module",
- "engines": {
- "node": ">= 18.12"
- },
- "devDependencies": {
- "@babel/cli": "^7.24.5",
- "@babel/core": "^7.24.5",
- "@babel/preset-env": "^7.24.5",
- "@types/jest": "~29.5",
- "@types/node": "~18",
- "@typescript-eslint/eslint-plugin": "~6.2",
- "@typescript-eslint/parser": "~6.2",
- "babelify": "^10.0.0",
- "browserify": "^17.0.0",
- "eslint": "~8.46",
- "eslint-config-prettier": "~9.0",
- "eslint-plugin-prettier": "^5.1.1",
- "prettier": "~3.0",
- "rimraf": "~5.0",
- "ts-api-utils": "~1.0",
- "tsc-alias": "1.8.8",
- "typescript": "~5.1.0"
- },
- "scripts": {
- "prestart": "npm run build",
- "start": "node build/src/main.js",
- "testShawn": "npm run build && node build/src/test.js",
- "faucet": "npm run build && node build/src/faucet/faucet.js",
- "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",
- "prettier": "prettier --config .prettierrc --write .",
- "test": "yarn build && node build/src/swapTester.js",
- "decode": "yarn build && node build/src/decodeFunction.js"
- },
- "license": "Apache-2.0",
- "dependencies": {
- "@initia/initia.js": "^0.1.51",
- "@prisma/client": "^5.14.0",
- "axios": "^1.6.8",
- "dotenv": "^16.4.5",
- "https-proxy-agent": "^7.0.4",
- "minify": "^11.1.1",
- "node-cron": "^3.0.3",
- "polly-js": "^1.8.3",
- "prisma": "^5.14.0",
- "shawnlu96-altcha-lib": "0.3.6",
- "tslib": "~2.6.2"
- },
- "volta": {
- "node": "18.12.1"
- }
- }
|