identity/identity-api/package.json

34 lines
928 B
JSON
Raw Normal View History

2024-06-13 20:00:45 +00:00
{
2024-06-16 18:56:41 +00:00
"name": "identity-api",
"version": "1.0.0",
2024-06-25 22:29:26 +00:00
"main": "src/index.js",
2024-06-29 17:12:12 +00:00
"license": "AGPL-3.0-only",
2024-06-16 18:56:41 +00:00
"private": true,
"type": "module",
"packageManager": "yarn@4.3.0",
"dependencies": {
2024-06-27 21:50:14 +00:00
"@fastify/cors": "^9.0.1",
2024-06-30 16:04:54 +00:00
"@fastify/type-provider-typebox": "^4.0.0",
"@sinclair/typebox": "^0.32.34",
"argon2": "^0.40.3",
"better-sqlite3": "^11.1.1",
2024-06-25 22:29:26 +00:00
"dotenv": "^16.4.5",
2024-06-30 16:04:54 +00:00
"drizzle-orm": "^0.31.2",
2024-06-16 18:56:41 +00:00
"fastify": "^4.27.0",
2024-06-25 22:29:26 +00:00
"jose": "^5.4.0"
2024-06-16 18:56:41 +00:00
},
"scripts": {
2024-06-30 16:04:54 +00:00
"start": "tsc && node dist/index.js",
2024-06-30 16:13:29 +00:00
"lint:fix": "eslint . --fix && prettier . --write",
"lint": "eslint . && prettier . --check"
2024-06-16 18:56:41 +00:00
},
"devDependencies": {
"@eslint/js": "^9.5.0",
2024-06-30 16:04:54 +00:00
"@types/node": "^20.14.9",
2024-06-16 18:56:41 +00:00
"eslint": "9.x",
"globals": "^15.5.0",
2024-06-30 16:04:54 +00:00
"prettier": "3.3.2",
"typescript": "^5.5.2"
2024-06-16 18:56:41 +00:00
}
2024-06-13 20:00:45 +00:00
}