-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "teamcollab-api",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"type": "commonjs",
"scripts": {
"generate-schema": "ts-node ./src/gql/generateSchema.ts",
"generate": "npm run generate-schema && graphql-codegen --config codegen.yml",
"compile": "npm run generate && tsc",
"build": "npm run compile",
"start": "node ./dist/src/server.js"
},
"keywords": [
"Team Collab",
"GraphQL API"
],
"author": "Odinaka Joy",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.11.3",
"@graphql-tools/merge": "^9.0.24",
"@graphql-tools/schema": "^10.0.23",
"bcryptjs": "^3.0.2",
"config": "^3.3.12",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dataloader": "^2.2.3",
"dotenv-safe": "^9.1.0",
"express": "^4.21.2",
"express-prometheus-middleware": "^1.2.0",
"express-rate-limit": "^7.5.0",
"graphql-shield": "^7.6.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.13.1",
"prom-client": "^13.2.0",
"ts-node": "^10.9.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.5",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-resolvers": "^4.5.0",
"@types/bcryptjs": "^2.4.6",
"@types/config": "^3.3.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/dotenv-safe": "^8.1.6",
"@types/express": "^4.17.21",
"@types/express-prometheus-middleware": "^1.2.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.1",
"graphql": "^16.10.0",
"typescript": "^5.8.3"
}
}