-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.22 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
{
"name": "@srnd/gql-server",
"version": "0.1.0",
"description": "GraphQL interface to SRND services.",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/polyfill": "^7.4.3",
"@codeday/eslint-config": "^1.3.0",
"eslint": "^7.3.1",
"nodemon": "^2.0.4",
"prettier": "^2.8.7"
},
"scripts": {
"build": "swc src -d dist --copy-files",
"start": "node dist/index.js",
"dev-once": "yarn run build && node dist/index.js",
"dev": "nodemon --watch src --exec yarn run dev-once"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SRND/gql-server.git"
},
"keywords": [
"srnd"
],
"author": "Tyler Menezes",
"license": "Artistic-2.0",
"bugs": {
"url": "https://github.com/SRND/Topo/issues"
},
"homepage": "https://github.com/SRND/Topo#readme",
"dependencies": {
"@apollo/client": "^3.2.9",
"@codeday/uploader-node": "^1.0.1",
"@graphql-tools/delegate": "7.0.7",
"@graphql-tools/links": "^7.0.3",
"@graphql-tools/load": "^6.2.5",
"@graphql-tools/merge": "^6.2.6",
"@graphql-tools/mock": "^7.0.0",
"@graphql-tools/schema": "^7.1.2",
"@graphql-tools/stitch": "^7.1.4",
"@graphql-tools/url-loader": "^6.4.0",
"@graphql-tools/utils": "^7.1.2",
"@graphql-tools/wrap": "^7.0.3",
"apollo-fetch": "^0.7.0",
"apollo-link-http": "^1.5.14",
"apollo-link-prismic": "^1.0.2",
"apollo-link-retry": "^2.2.13",
"apollo-server": "^2.25.3",
"apollo-server-express": "^2.4.8",
"apollo-upload-client": "^14.1.3",
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"cross-fetch": "^3.0.6",
"dataloader": "^2.0.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"emoji-strip": "^1.0.1",
"express": "^4.16.4",
"extract-files": "^10.0.0",
"form-data": "^4.0.0",
"graphql": "15.3.0",
"graphql-scalars": "^1.21.3",
"graphql-upload": "^11.0.0",
"graphql-ws": "^2.0.0",
"husky": "^1.3.1",
"jsonwebtoken": "^8.5.1",
"lru-cache": "^6.0.0",
"map-obj": "^4.1.0",
"node-fetch": "^2.6.0",
"phone": "^2.4.19",
"pretty-quick": "^1.10.0",
"subscriptions-transport-ws": "^0.9.18",
"swc": "^1.0.11",
"syslog-client": "^1.1.1",
"ws": "^7.4.6"
}
}