-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "graphql-tools-demo",
"version": "1.0.0",
"description": "Reproduction of issue with version 7 of @graphql-tools/load and @graphql-tools/graphql-file-loader",
"scripts": {
"start": "ts-node-dev app",
"build": "cpy graphql --parents build && npx tsc && pkg .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "John Heenan",
"license": "ISC",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.2.0",
"@graphql-tools/load": "^7.3.2",
"graphql": "^15.5.2"
},
"devDependencies": {
"@types/node": "^16.7.10",
"cpy": "^8.1.2",
"pkg": "^5.3.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"bin": "build/app.js",
"pkg": {
"scripts": "build/**/*.js",
"outputPath": "dist",
"assets": [
"build/**/*",
"!graphql-tools/**/*"
],
"targets": [
"node14-win-x64",
"node14-linux-x64",
"node14-darwin-x64"
]
}
}