-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.13 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
{
"name": "ciboard-server",
"version": "1.0.0",
"description": "Sever for ciboard",
"private": true,
"main": "index.js",
"scripts": {
"dev:server": "nodemon --config dev-server.json",
"start:server": "source ./env.sh && node build/server.js | ./node_modules/.bin/pino-pretty",
"build": "rimraf ./build && tsc",
"test": "jest"
},
"author": "",
"license": "LGPL-3.0-or-later",
"dependencies": {
"@graphql-tools/delegate": "^10.0.0",
"@sentry/node": "^7.60.0",
"@opensearch-project/opensearch": "^2.2.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.4.0",
"axios-debug-log": "^1.0.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"errorhandler": "^1.5.1",
"exec-sh": "^0.4.0",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"graphql-bigint": "^1.0.0",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"js-yaml": "^4.1.0",
"kerberos": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"pako": "^2.1.0",
"passport": "^0.5.3",
"passport-saml": "^3.2.4",
"pg": "^8.11.1",
"pino": "^8.14.1",
"pino-http": "^9.0.0",
"pino-pretty": "^11.0.0",
"pino-sentry": "^0.14.0",
"retry": "^0.13.1",
"tmp": "^0.2.1",
"xmlrpc": "^1.3.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.17",
"@types/graphql-bigint": "^1.0.0",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/kerberos": "^1.1.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.4",
"@types/node-cron": "^3.0.8",
"@types/pako": "^2.0.0",
"@types/passport": "^1.0.11",
"@types/pg": "^8.10.2",
"@types/retry": "^0.12.2",
"@types/tmp": "^0.2.3",
"@types/xmlrpc": "^1.3.7",
"nodemon": "^3.1.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}