This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
forked from PalisadoesFoundation/talawa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.56 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
{
"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/server.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",
"test": "vitest run --no-threads --coverage",
"typecheck": "graphql-codegen && tsc --noEmit --pretty",
"lint:check": "eslint . --max-warnings=0",
"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"
},
"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": {
"@graphql-tools/schema": "^8.4.0",
"apollo-server-core": "^3.11.1",
"apollo-server-express": "^2.25.4",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"cls-bluebird": "^2.1.0",
"cls-hooked": "^4.2.2",
"copy-paste": "^1.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.6.0",
"express": "^4.18.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^5.5.1",
"firebase-admin": "^10.3.0",
"graphql": "^15.8.0",
"graphql-depth-limit": "^1.1.0",
"graphql-upload": "^12.0.0",
"helmet": "^4.6.0",
"i18n": "^0.13.4",
"image-hash": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"mongoose": "^5.13.14",
"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": "^3.4.0",
"validator": "^13.7.0",
"winston": "^3.8.0",
"xss-clean": "^0.1.1"
},
"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.13",
"@types/express": "^4.17.13",
"@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.182",
"@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": "^3.4.10",
"@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-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tsx": "^3.11.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
}
}