This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.15 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
{
"name": "@globality/nodule-graphql",
"version": "3.6.0",
"description": "Node GraphQL Conventions",
"main": "lib/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/globality-corp/nodule-graphql.git"
},
"author": "Globality Engineering",
"files": [
"lib/"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc -p tsconfig.build.json && babel src --out-dir lib --ignore '**/__tests__/*,**/__mocks__/*' --extensions '.js,.ts'",
"lint": "gi-eslint-run lint",
"lint:fix": "gi-eslint-run lint --fix",
"pack:dev": "./scripts/pack-dev.sh",
"test": "jest",
"verify": "yarn lint && yarn test",
"preyalc": "yarn clean && yarn build"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"axios": "^1.7.7",
"connect-requestid": "1.1.0",
"cors": "2.8.5",
"dataloader": "1.4.0",
"enum": "3.0.4",
"express-jwt": "^8.4.1",
"graphql-playground-middleware-express": "^1.7.22",
"helmet": "3.23.3",
"http-status-codes": "2.3.0",
"is-uuid": "1.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "4.17.21",
"spookyhash": "3.0.0",
"uuid": "10.0.0"
},
"peerDependencies": {
"@globality/nodule-config": ">= 2.15.4 < 3",
"@globality/nodule-express": ">= 0.1.14 < 1",
"@globality/nodule-logging": ">= 1.5.2 < 2",
"@globality/nodule-openapi": ">= 0.21.0 < 1",
"graphql": "^16.6.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@globality/gi-eslint-config": "^2.0.2",
"@globality/nodule-config": "^2.15.4",
"@globality/nodule-express": "^0.7.0",
"@globality/nodule-logging": "^1.6.0",
"@globality/nodule-openapi": "0.27.0",
"@types/jest": "^29.5.12",
"@types/node": "20.16.x",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"body-parser": "1.20.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.3.0",
"graphql": "^16.9.0",
"jest": "^29.7.0",
"prettier": "^2.5.1",
"supertest": "7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^4.5.4"
},
"resolutions": {
"express": "^4.19.2",
"lodash": "^4.17.21",
"xss": "1.0.10"
},
"jest": {
"preset": "ts-jest/presets/js-with-babel",
"testEnvironment": "node",
"testRegex": "/__tests__/.*(test)\\.[jt]s",
"modulePaths": [
"<rootDir>/src"
],
"testURL": "http://localhost"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}