-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "ezio-tester",
"version": "1.0.0",
"description": "GraphQL server for testing Altair",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"dev:rs": "nodemon src/rs-index.ts --ignore src/schema/"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@graphql-tools/schema": "^9.0.17",
"axios": "^0.18.1",
"body-parser": "^1.20.2",
"chokidar": "^3.5.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-sse": "^2.1.3",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "15.0.2",
"graphql-ws": "^5.12.0",
"lodash": "^4.17.20",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.17",
"@types/graphql": "^14.2.0",
"@types/lodash": "^4.14.123",
"@types/node": "^18.15.0",
"@types/ws": "^8.5.4",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}