forked from PalisadoesFoundation/talawa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 5.07 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
{
"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",
"lint-staged": "lint-staged",
"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": "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.0",
"@faker-js/faker": "^8.2.0",
"@graphql-inspector/cli": "^4.0.3",
"@graphql-tools/resolvers-composition": "^7.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.11",
"@types/graphql-upload": "^16.0.5",
"@types/yargs": "^17.0.32",
"axios": "^1.6.7",
"bcryptjs": "^2.4.3",
"cls-bluebird": "^2.1.0",
"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.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"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": "^2.0.0",
"graphql-ws": "^5.14.2",
"helmet": "^7.1.0",
"i18n": "^0.15.1",
"image-hash": "^5.3.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"markdown-toc": "^1.2.0",
"mongoose": "^5.13.21",
"mongoose-paginate-v2": "^1.7.0",
"morgan": "^1.10.0",
"nanoid": "^5.0.5",
"nodemailer": "^6.9.8",
"pm2": "^5.2.0",
"redis": "^4.6.12",
"shortid": "^2.2.16",
"typedoc-plugin-markdown": "^3.17.1",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"winston": "^3.8.0",
"ws": "^8.15.0",
"yargs": "^17.7.2",
"zod": "^3.22.3",
"zod-error": "^1.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@graphql-eslint/eslint-plugin": "^3.20.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.10",
"@types/inquirer": "^9.0.7",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/mongoose-paginate-v2": "^1.6.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.16",
"@types/nodemailer": "^6.4.14",
"@types/shortid": "^0.0.32",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/coverage-c8": "^0.24.3",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"get-graphql-schema": "^2.1.2",
"graphql-markdown": "^7.0.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.1",
"prettier": "^2.7.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.2",
"vitest": "^0.24.3"
},
"overrides": {
"graphql-voyager": {
"graphql": "^16.6.0"
}
},
"lint-staged": {
"**/*.{ts,json}": [
"prettier --write"
],
"**/*.ts": "eslint --fix"
}
}