Mercurial
comparison benchmark/bun-http-framework-benchmark/src/node/adonis/package.json @ 183:a8976a008a9d
[BenchMark] Added bun bench mark to test seoboe vs other popular benchmarks.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 23 Jan 2026 21:19:08 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 179:8d17f6e6e290 | 183:a8976a008a9d |
|---|---|
| 1 { | |
| 2 "name": "adonis", | |
| 3 "version": "1.0.0", | |
| 4 "private": true, | |
| 5 "scripts": { | |
| 6 "dev": "node ace serve --watch", | |
| 7 "build": "node ace build --production", | |
| 8 "start": "node server.js", | |
| 9 "test": "node ace test", | |
| 10 "lint": "eslint . --ext=.ts", | |
| 11 "format": "prettier --write ." | |
| 12 }, | |
| 13 "eslintConfig": { | |
| 14 "extends": [ | |
| 15 "plugin:adonis/typescriptApp", | |
| 16 "prettier" | |
| 17 ], | |
| 18 "plugins": [ | |
| 19 "prettier" | |
| 20 ], | |
| 21 "rules": { | |
| 22 "prettier/prettier": [ | |
| 23 "error" | |
| 24 ] | |
| 25 } | |
| 26 }, | |
| 27 "eslintIgnore": [ | |
| 28 "build" | |
| 29 ], | |
| 30 "prettier": { | |
| 31 "trailingComma": "es5", | |
| 32 "semi": false, | |
| 33 "singleQuote": true, | |
| 34 "useTabs": false, | |
| 35 "quoteProps": "consistent", | |
| 36 "bracketSpacing": true, | |
| 37 "arrowParens": "always", | |
| 38 "printWidth": 100 | |
| 39 }, | |
| 40 "devDependencies": { | |
| 41 "@adonisjs/assembler": "^5.9.5", | |
| 42 "@japa/preset-adonis": "^1.2.0", | |
| 43 "@japa/runner": "^2.5.1", | |
| 44 "@types/proxy-addr": "^2.0.0", | |
| 45 "@types/source-map-support": "^0.5.6", | |
| 46 "adonis-preset-ts": "^2.1.0", | |
| 47 "eslint": "^8.40.0", | |
| 48 "eslint-config-prettier": "^8.8.0", | |
| 49 "eslint-plugin-adonis": "^2.1.1", | |
| 50 "eslint-plugin-prettier": "^4.2.1", | |
| 51 "pino-pretty": "^10.0.0", | |
| 52 "prettier": "^2.8.8", | |
| 53 "typescript": "~4.6", | |
| 54 "youch": "^3.2.3", | |
| 55 "youch-terminal": "^2.2.0" | |
| 56 }, | |
| 57 "dependencies": { | |
| 58 "@adonisjs/core": "^5.8.0", | |
| 59 "proxy-addr": "^2.0.7", | |
| 60 "reflect-metadata": "^0.1.13", | |
| 61 "source-map-support": "^0.5.21" | |
| 62 } | |
| 63 } |