-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.12 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "kanban",
"version": "1.0.0",
"description": "Full Stack Collaboration Platform with JWT Authentication and GraphQL API",
"main": "src/server.ts",
"scripts": {
"dev": "bun run --watch src/server.ts",
"build": "bun build src/server.ts --outdir dist",
"start": "bun run dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"gm": "graphile-migrate",
"db:migrate": "npm run gm migrate",
"db:reset": "npm run gm reset",
"db:watch": "npm run gm watch",
"db:commit": "npm run gm commit",
"db:shadow:reset": "npm run gm shadow reset",
"drizzle:pull": "drizzle-kit pull",
"drizzle:studio": "drizzle-kit studio"
},
"keywords": [
"graphql",
"jwt",
"authentication",
"collaboration",
"task-management"
],
"target": "bun",
"license": "MIT",
"dependencies": {
"@apollo/server": "^5.1.0",
"@as-integrations/express4": "^1.1.2",
"@google/generative-ai": "^0.24.1",
"@graphql-tools/load-files": "^7.0.1",
"@graphql-tools/merge": "^9.1.1",
"@graphql-tools/schema": "^10.0.25",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"express": "^4.21.2",
"express-rate-limit": "^8.1.0",
"graphql": "^16.11.0",
"graphql-subscriptions": "^3.0.0",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"pg": "^8.16.3",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"winston": "^3.18.3"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.9.1",
"@types/pg": "^8.15.6",
"@types/supertest": "^6.0.3",
"@types/uuid": "^11.0.0",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.31.8",
"graphile-migrate": "^1.4.1",
"jest": "^29.7.0",
"pg-migrate": "^2.0.1",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}