Files
json-server/package.json
typicode 193b12960c use TS natively and switch to pnpm (#1672)
* use TS natively

* use pnpm
2026-01-15 00:04:05 +01:00

58 lines
1.3 KiB
JSON

{
"name": "json-server",
"version": "1.0.0-beta.3",
"description": "",
"type": "module",
"bin": {
"json-server": "lib/bin.js"
},
"files": [
"lib",
"views"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "node --experimental-strip-types src/bin.ts fixtures/db.json",
"build": "rm -rf lib && tsc",
"prepublishOnly": "rm -rf lib && tsc",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types --test src/*.test.ts",
"lint": "oxlint src",
"prepare": "husky"
},
"keywords": [],
"author": "typicode <typicode@gmail.com>",
"license": "SEE LICENSE IN ./LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/json-server.git"
},
"devDependencies": {
"@types/node": "^25.0.8",
"concurrently": "^9.2.1",
"get-port": "^7.1.0",
"husky": "^9.1.7",
"oxlint": "^1.39.0",
"tempy": "^3.1.0",
"type-fest": "^5.4.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@tinyhttp/app": "^3.0.1",
"@tinyhttp/cors": "^2.0.1",
"@tinyhttp/logger": "^2.1.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"dot-prop": "^10.1.0",
"eta": "^4.5.0",
"inflection": "^3.0.2",
"json5": "^2.2.3",
"lowdb": "^7.0.1",
"milliparsec": "^5.1.0",
"sirv": "^3.0.2",
"sort-on": "^7.0.0"
}
}