-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "apollo-grand-server",
"version": "1.0.5",
"description": "apollo graphql server for grandjs framework",
"main": "dist/index.js",
"directories": {
"src": "./src",
"dist": "./dist"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tareksalem/apollo-grand-server.git"
},
"keywords": [
"nodejs",
"graphql",
"apollo",
"server",
"apollo",
"grandjs",
"javascript"
],
"author": "tarek salem",
"license": "ISC",
"bugs": {
"url": "https://github.com/tareksalem/apollo-grand-server/issues"
},
"homepage": "https://github.com/tareksalem/apollo-grand-server#readme",
"devDependencies": {
"@apollographql/graphql-playground-html": "^1.6.27",
"@types/accepts": "^1.3.5",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/node": "^14.14.37",
"@types/type-is": "^1.6.3",
"apollo-fetch": "^0.7.0",
"graphql": "^15.5.0",
"nodemon": "^2.0.7",
"request": "^2.88.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"accepts": "^1.3.7",
"apollo-server-core": "^2.22.1",
"apollo-server-types": "^0.7.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"grandjs": "^2.2.30",
"graphql-subscriptions": "^1.2.1",
"graphql-tools": "^7.0.4",
"parseurl": "^1.3.3",
"subscriptions-transport-ws": "^0.9.18",
"type-is": "^1.6.18"
},
"resolutions": {
"graphql": "^15.5.0"
}
}