generated from HelloUnspecified/template-graph-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.66 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
{
"name": "that-api-sessions",
"version": "4.8.3",
"description": "THAT Conference Sessions Service.",
"main": "index.js",
"engines": {
"node": ">=16 <21"
},
"scripts": {
"build": "rimraf __build__ && babel ./src -d ./__build__ --copy-files --ignore ./**/__tests__,./**/__mocks__",
"postbuild": "cp .env package* __build__",
"predeploy:local": "npm run build",
"deploy:local": "cd ./__build__ && node index.js",
"start:watch": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:local",
"start": "node index.js",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build",
"prepare": "husky"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"@apollo/subgraph": "^2.8.4",
"@google-cloud/firestore": "^7.9.0",
"@google-cloud/trace-agent": "^8.0.0",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.6",
"@graphql-tools/utils": "^10.5.4",
"@sentry/node": "^7.119.0",
"@thatconference/api": "~4.5.1",
"@thatconference/schema": "^4.1.0",
"base32-encode": "~1.2.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"dayjs": "^1.11.13",
"debug": "^4.3.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fetch-retry": "^6.0.0",
"googleapis": "^142.0.0",
"graphql": "^16.9.0",
"graphql-scalars": "^1.23.0",
"graphql-type-json": "^0.3.2",
"ical-generator": "^7.2.0",
"lodash": "^4.17.21",
"node-fetch": "~2.7.0",
"postmark": "^4.0.5",
"response-time": "^2.3.2",
"slugify": "^1.6.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest-cli": "^29.7.0",
"mockdate": "^3.0.5",
"nodemon": "^3.1.4",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"rootDir": "./src",
"coverageDirectory": "../__testCoverage__"
},
"repository": {
"type": "git",
"url": "https://github.com/ThatConference/that-api-sessions"
},
"license": "GPL-3.0"
}