forked from PalisadoesFoundation/talawa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 5.17 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "talawa-api",
"version": "1.0.0",
"description": "talawa-api is a backend repository written using Node.js and graphql for generating APIs for the talawa flutter app.",
"main": "./build/server.js",
"scripts": {
"build": "tsc --pretty --project tsconfig.build.json",
"dev": "concurrently \"tsx --watch ./src/index.ts\" \"graphql-codegen --watch\"",
"prebuild": "graphql-codegen && rimraf ./build",
"prod": "cross-env NODE_ENV=production pm2-runtime start ./build/server.js",
"start": "cross-env pm2-runtime start ./build/server.js --watch",
"setup": "tsx setup.ts",
"test": "vitest run --pool forks --poolOptions.forks.singleFork --coverage",
"typecheck": "graphql-codegen && tsc --noEmit --pretty",
"lint:check": "eslint . --max-warnings=1500",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,scss,css}\"",
"prepare": "husky",
"generate:graphql-markdown": "graphql-markdown http://localhost:4000/graphql > docs/Schema.md",
"generate:graphql-schema": "get-graphql-schema http://localhost:4000/graphql --json > docs/schema.json",
"generate:ssl-private-key": "openssl genrsa -out ./key.pem",
"import:sample-data": "tsx ./src/utilities/loadSampleData.ts",
"import:sample-data:prod": "node ./build/utilities/loadSampleData.js",
"gen:schema": "graphql-inspector introspect ./src/typeDefs/**/**/*.ts --write ./schema.graphql ",
"update:toc": "node scripts/githooks/update-toc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/PalisadoesFoundation/talawa-api"
},
"keywords": [
"chats",
"events",
"organization",
"community"
],
"author": "Palisadoes Foundation",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/PalisadoesFoundation/talawa-api/issues"
},
"homepage": "https://github.com/PalisadoesFoundation/talawa-api#readme",
"dependencies": {
"@apollo/server": "^4.10.4",
"@faker-js/faker": "^8.2.0",
"@graphql-inspector/cli": "^5.0.6",
"@graphql-tools/resolvers-composition": "^7.0.1",
"@graphql-tools/schema": "^10.0.4",
"@graphql-tools/utils": "^10.3.2",
"@parcel/watcher": "^2.4.1",
"@types/graphql-upload": "^16.0.5",
"@types/yargs": "^17.0.32",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"bluebird": "3.7.2",
"cls-hooked": "^4.2.2",
"copy-paste": "^1.5.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.3.1",
"graphql": "^16.9.0",
"graphql-depth-limit": "^1.1.0",
"graphql-scalars": "^1.20.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-upload": "^16.0.2",
"graphql-voyager": "^2.0.0",
"graphql-ws": "^5.16.0",
"helmet": "^7.1.0",
"i18n": "^0.15.1",
"image-hash": "^5.3.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"markdown-toc": "^1.2.0",
"mongodb": "^6.7.0",
"mongoose": "^8.3.2",
"mongoose-paginate-v2": "^1.8.2",
"morgan": "^1.10.0",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.14",
"pm2": "^5.4.0",
"redis": "^4.6.15",
"rrule": "^2.8.1",
"typedoc-plugin-markdown": "^4.2.1",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"winston": "^3.13.0",
"ws": "^8.18.0",
"yargs": "^17.7.2",
"zod": "^3.23.8",
"zod-error": "^1.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-resolvers": "^4.2.0",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@parcel/watcher": "^2.4.1",
"@types/bcryptjs": "^2.4.6",
"@types/cls-hooked": "^4.3.8",
"@types/copy-paste": "^1.1.30",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/express-rate-limit": "^6.0.0",
"@types/graphql-depth-limit": "^1.1.6",
"@types/i18n": "^0.13.12",
"@types/inquirer": "^9.0.7",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.17.6",
"@types/mongoose-paginate-v2": "^1.6.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.9",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^1.6.0",
"cls-bluebird": "^2.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.3.0",
"get-graphql-schema": "^2.1.2",
"graphql-markdown": "^7.0.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"tsx": "^4.16.2",
"typescript": "^5.4.5",
"vitest": "^1.2.1"
},
"overrides": {
"graphql-voyager": {
"graphql": "^16.6.0"
}
},
"lint-staged": {
"**/*.{ts,json}": [
"prettier --write"
],
"**/*.ts": "eslint --fix"
}
}