-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "thaqalayn-api",
"version": "2.0.0",
"description": "API for hadiths found on the thaqalayn.net website",
"main": "index.js",
"scripts": {
"start": "tsx API/src/index.ts",
"start:prod": "node API/dist/index.js",
"dev": "tsx watch API/src/index.ts",
"build:api": "tsc -p API/tsconfig.json",
"typecheck:api": "tsc -p API/tsconfig.json --noEmit",
"dev:api:ts": "tsx watch API/src/index.ts",
"start:api:ts": "tsx API/src/index.ts"
},
"author": "Mohammed Arab",
"license": "GNU GPLv3",
"dependencies": {
"@apollo/server": "^4.10.4",
"@apollo/server-plugin-response-cache": "^4.1.3",
"@apollo/utils.keyvadapter": "^3.1.0",
"@keyv/redis": "^4.3.4",
"axios": "^0.27.2",
"cors": "^2.8.5",
"cross-var": "^1.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"express": "^4.18.1",
"graphql": "^16.8.1",
"keyv": "^5.3.3",
"mongoose": "^6.6.2",
"mongoose-simple-random": "^0.4.1",
"redis": "^4.6.15",
"run-func": "^3.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.8.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"tsx": "^4.22.0",
"typescript": "^6.0.3"
}
}