-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "apollo-proxy",
"version": "0.1.0",
"description": "lightweight Apollo GraphQL intercepting proxy",
"author": "Michael Fyodorov",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"jest-test": "npx jest",
"start-server": "node test/startServer.js",
"test": "dotenv cross-var start-server-and-test start-server http://localhost:%APOLLO_PORT% jest-test"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^14.6.2",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.10",
"apollo-server-express": "^2.17.0",
"cross-var": "^1.1.0",
"dotenv-cli": "^3.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"start-server-and-test": "^1.11.3",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/softremake/apollo-proxy"
}
}