avatars-api/package.json

40 lines
1,020 B
JSON
Raw Normal View History

2024-07-07 21:50:52 -05:00
{
"name": "avatars-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
2024-09-26 02:57:38 -05:00
"type": "module",
2024-07-07 21:50:52 -05:00
"scripts": {
"build": "npx tsc",
2024-09-26 02:57:38 -05:00
"start": "node --experimental-specifier-resolution=node dist/index.js",
2024-09-26 01:13:22 -05:00
"dev": "tsx watch src/index.ts",
"preinstall": "yarn config set ignore-engines true"
2024-07-07 21:50:52 -05:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2024-09-26 01:13:22 -05:00
"@dicebear/core": "^9.2.2",
"@dicebear/open-peeps": "^9.2.2",
"@dicebear/pixel-art": "^9.2.2",
"@dicebear/thumbs": "^9.2.2",
"@koa/cors": "^5.0.0",
2024-07-07 21:50:52 -05:00
"dotenv": "^16.0.1",
2024-09-26 01:13:22 -05:00
"joi": "^17.13.3",
"koa": "^2.15.3",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.1",
"sharp": "^0.33.5",
"uuid": "^10.0.0"
2024-07-07 21:50:52 -05:00
},
"devDependencies": {
2024-09-26 01:13:22 -05:00
"@types/koa": "^2.15.0",
"@types/koa-logger": "^3.1.5",
"@types/koa-router": "^7.4.8",
"@types/koa__cors": "^5.0.0",
2024-07-07 21:50:52 -05:00
"@types/node": "^18.7.3",
2024-09-26 01:13:22 -05:00
"@types/uuid": "^10.0.0",
"tsx": "^4.19.1",
2024-07-07 21:50:52 -05:00
"typescript": "^4.7.4"
}
2024-09-26 02:57:38 -05:00
}