generated from HelloUnspecified/template-graph-gateway
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 3.91 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": "that-api-gateway",
"version": "4.4.2",
"description": "THAT Apollo gateway",
"main": "index.js",
"engines": {
"node": ">=16 <21"
},
"scripts": {
"build": "rimraf __build__ && babel ./src -d ./__build__ --copy-files --ignore ./**/__tests__",
"postbuild": "cp .env package* stellate.yml __build__",
"predeploy:api:graphEndpoint": "npm run build",
"deploy:api:graphEndpoint": "cd __build__ && node index.js",
"start:watch:api:graphApi": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:api:graphEndpoint",
"prestart:watch:this": "sleep 5",
"start:watch:this": "concurrently npm:start:watch:api:* --raw",
"start:watch:events": "cd ../that-api-events && npm run start:watch",
"start:watch:partners": "cd ../that-api-partners && npm run start:watch",
"start:watch:sessions": "cd ../that-api-sessions && npm run start:watch",
"start:watch:members": "cd ../that-api-members && npm run start:watch",
"start:watch:garage": "cd ../that-api-garage && npm run start:watch",
"start:watch:communications": "cd ../that-api-communications && npm run start:watch",
"start:watch:help": "cd ../that-api-help && npm run start:watch",
"start:watch": "concurrently -n gateway,events,partners,sessions,members,garage,communications,help npm:start:watch:this npm:start:watch:events npm:start:watch:partners npm:start:watch:sessions npm:start:watch:members npm:start:watch:garage npm:start:watch:communications npm:start:watch:help -c \"bgRed,bgGreen,bgCyan,bgYellow,bgMagenta,yellow,white,green\"",
"start:watch:raw": "concurrently npm:start:watch:this npm:start:watch:events npm:start:watch:partners npm:start:watch:sessions npm:start:watch:members npm:start:watch:garage npm:start:watch:communications --raw",
"start": "node index.js",
"i:gateway": "npm i",
"i:events": "cd ../that-api-events && npm i",
"i:members": "cd ../that-api-members && npm i",
"i:partners": "cd ../that-api-partners && npm i",
"i:sessions": "cd ../that-api-sessions && npm i",
"i:garage": "cd ../that-api-garage && npm i",
"i:communications": "cd ../that-api-communications && npm i",
"i:help": "cd ../that-api-help && npm i",
"npm:i": "concurrently npm:i:* --raw",
"test": "jest --coverage --passWithNoTests",
"test:watch": "cross-env jest --watchAll",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build",
"prepare": "husky"
},
"dependencies": {
"@apollo/gateway": "^2.8.4",
"@apollo/server": "^4.11.0",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.1",
"@google-cloud/trace-agent": "^8.0.0",
"@sentry/node": "^7.119.0",
"@thatconference/api": "^4.5.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"debug": "^4.3.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"graphql": "^16.9.0",
"lodash": "^4.17.21",
"response-time": "^2.3.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jest-cli": "^29.7.0",
"nodemon": "^3.1.4",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "~8.0.1",
"stellate": "^2.16.4"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"rootDir": "./src",
"coverageDirectory": "../__testCoverage__"
},
"repository": {
"type": "git",
"url": "https://github.com/ThatConference/that-api-gateway"
},
"license": "GPL-3.0"
}