forked from PalisadoesFoundation/talawa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.85 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
{
"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 --no-threads --coverage",
"typecheck": "graphql-codegen && tsc --noEmit --pretty",
"lint:check": "eslint . --max-warnings=1500",
"lint:fix": "eslint . --fix",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,scss,css}\"",
"prepare": "husky install",
"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": "ts-node ./src/utilities/loadSampleData.ts",
"import:sample-data:prod": "node ./build/utilities/loadSampleData.js",
"gen:schema": "graphql-inspector introspect ./src/typeDefs/**/**/*.ts --write ./schema.graphql "
},
"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.9.3",
"@faker-js/faker": "^8.2.0",
"@graphql-inspector/cli": "^3.4.19",
"@graphql-tools/resolvers-composition": "^7.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.1",
"@types/graphql-upload": "^16.0.5",
"@types/yargs": "^17.0.24",
"axios": "^1.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cls-bluebird": "^2.1.0",
"cls-hooked": "^4.2.2",
"copy-paste": "^1.5.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^5.5.1",
"firebase-admin": "^11.9.0",
"graphql": "^16.8.1",
"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": "^1.0.1",
"graphql-ws": "^5.14.2",
"helmet": "^4.6.0",
"i18n": "^0.15.1",
"image-hash": "^5.3.1",
"install": "^0.13.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"mongoose": "^5.13.21",
"mongoose-paginate-v2": "^1.7.0",
"morgan": "^1.10.0",
"nanoid": "^3.3.4",
"nodemailer": "^6.7.8",
"pm2": "^5.2.0",
"shortid": "^2.2.16",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"vite": "^3.2.7",
"vm2": "^3.9.19",
"winston": "^3.8.0",
"ws": "^8.15.0",
"xss-clean": "^0.1.1",
"yargs": "^17.7.2",
"zod": "^3.22.3",
"zod-error": "^1.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-resolvers": "^2.6.6",
"@graphql-eslint/eslint-plugin": "^3.12.0",
"@types/bcryptjs": "^2.4.2",
"@types/cls-hooked": "^4.3.3",
"@types/copy-paste": "^1.1.30",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/express-rate-limit": "^5.1.3",
"@types/graphql-depth-limit": "^1.1.3",
"@types/i18n": "^0.13.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.195",
"@types/mongoose-paginate-v2": "^1.6.5",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.5",
"@types/shortid": "^0.0.29",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.7.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-c8": "^0.24.3",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-tsdoc": "^0.2.17",
"get-graphql-schema": "^2.1.2",
"graphql-markdown": "^7.0.0",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tsx": "^3.11.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
},
"overrides": {
"graphql-voyager": {
"graphql": "^16.6.0"
}
}
}