-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.59 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
{
"name": "swg-graphql",
"version": "0.1.0",
"private": true,
"license": "ISC",
"workspaces": [
"src/modules/**/*"
],
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/introspection": "^3.0.1",
"@types/async": "^3.2.18",
"@types/cors": "^2.8.13",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"caxa": "^3.0.1",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"jest": "^29.5.0",
"prettier": "2.8.7",
"ts-node": "10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.0.3"
},
"scripts": {
"start-built": "yarn node build/index.js",
"start-dev": "yarn ts-node-dev -r tsconfig-paths/register src/index.ts",
"start-dev-sh": "./start.sh",
"lint": "eslint --ext .ts,.js,.tsx,.jsx .",
"build": "rimraf build && yarn run tsc",
"build-dist": "yarn run build && yarn run caxa:linux",
"codegen:main": "graphql-codegen --config codegen.yml || echo \"Could not regenerate root schema, server must be running, skipping for now\" && exit 0",
"codegen": "yarn codegen:main && yarn workspaces run codegen",
"caxa:linux": "node caxa-build.js"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@bull-board/express": "^5.0.0",
"@elastic/elasticsearch": "^8.5.0",
"@graphql-tools/schema": "^9.0.17",
"async": "^3.2.4",
"binary-parser": "^2.1.0",
"body-parser": "^1.20.2",
"bullmq": "^3.10.3",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"elastic-builder": "^2.18.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"glob": "^9.3.3",
"got": "^11.8.2",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.12.1",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"oracledb": "^5.5.0",
"p-limit": "3.1.0",
"reflect-metadata": "^0.1.13",
"smart-buffer": "^4.2.0",
"tsconfig-paths": "^4.2.0",
"type-graphql": "^2.0.0-beta.1",
"typedi": "^0.10.0",
"ws": "^8.13.0",
"zod": "^3.21.4"
},
"bin": "build/index.js",
"pkg": {
"scripts": "build/**/*.js",
"assets": "data/**/*",
"targets": [
"linux"
],
"outputPath": "dist",
"compress": "Brotli"
}
}