forked from aiverify-foundation/aiverify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "ai-verify-apigw",
"version": "1.0.0",
"description": "API Gateway for AI Verify",
"main": "app.mjs",
"scripts": {
"dev": "node app.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint -f html -o eslint-report.html",
"dep-check": "npm audit --json | npx npm-audit-markdown --output npm-audit-report.md & npx markdown-to-html-cli --source npm-audit-report.md --output npm-audit-report.html"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.3.0",
"@graphql-tools/load-files": "^6.6.1",
"@graphql-tools/merge": "^8.3.14",
"@graphql-tools/schema": "^9.0.12",
"adm-zip": "^0.5.10",
"bluebird": "^3.7.2",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-constraint-directive": "^5.0.0",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-scalars": "^1.20.1",
"graphql-ws": "^5.11.2",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^6.11.4",
"multer": "^1.4.5-lts.1",
"node-cache": "^5.1.2",
"puppeteer": "^20.9.0",
"redis": "^4.5.1",
"ws": "^8.11.0"
},
"imports": {
"#models": "./models/index.mjs",
"#lib/*.mjs": "./lib/*.mjs"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"badge-maker": "^3.3.1",
"casual": "^1.6.2",
"eslint": "^8.38.0",
"eslint-formatter-html": "^2.4.0",
"jest": "^29.5.0",
"jest-html-reporter": "^3.7.1",
"jest-json-reporter": "^1.2.2",
"mock-fs": "^5.2.0",
"mongodb-memory-server": "^8.13.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0"
},
"config": {
"mongodbMemoryServer": {
"version": "6.0.4"
}
}
}