-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "fpl-api",
"type": "module",
"version": "1.1.0",
"author": "flavnat <natnael01ayele@gmail.com>",
"license": "MIT",
"repository": "git@github.com:flavnat/fpl-api.git",
"main": "dist/src/app.js",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "tsc -p tsconfig.json && tsc-alias",
"dev": "tsx watch src/app.ts",
"start": "node dist/src/app.js",
"db:show": "tsx node_modules/drizzle-kit/bin.cjs studio --config ./drizzle.config.ts",
"db:generate": "tsx node_modules/drizzle-kit/bin.cjs generate --config ./drizzle.config.ts",
"db:push": "tsx node_modules/drizzle-kit/bin.cjs push --config ./drizzle.config.ts",
"db:migrate": "tsx src/db/migrate.ts",
"docs": "npx docsify-cli serve docs"
},
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.3",
"@pothos/core": "^4.10.0",
"@pothos/plugin-drizzle": "^0.16.1",
"@types/node": "^25.0.9",
"@types/pg": "^8.11.10",
"@types/pino-pretty": "^5.0.0",
"better-auth": "^1.4.15",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"fastify": "^5.6.2",
"fastify-plugin": "^5.1.0",
"graphql": "^16.12.0",
"mercurius": "^16.6.0",
"pg": "^8.16.3",
"tsc-alias": "^1.8.16",
"typescript": "^5.7.3",
"undici": "^7.16.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.3.1",
"tsx": "^4.21.0"
}
}