-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@condict/http-server",
"version": "0.1.0",
"description": "Standalone Condict HTTP server. Supports minimal configuration and a basic sandbox. Intended mainly for reverse proxying behind a 'regular' HTTP server.",
"repository": "github:arimah/condict",
"author": "Alice Heurlin <[email protected]>",
"license": "MIT",
"files": [
"dist/"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"condict-server": "./dist/cli.js"
},
"binEntries": {
"condict-server": "src/cli.ts"
},
"scripts": {
"start": "node dist/cli.js"
},
"dependencies": {
"@apollo/server": "^4.2.2",
"@condict/server": "^0.1.0",
"@graphql-tools/schema": "^9.0.10",
"@graphql-tools/utils": "^9.1.1",
"command-line-args": "^5.2.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"nanoid": "^3.3.4",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.11.10",
"@types/ws": "^8.5.3"
}
}