-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 915 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
{
"name": "apollo-dynamic",
"version": "1.0.4",
"description": "Apollo utility to create dynamic selection sets on queries, mutations and subscriptions, based on decorated schema.",
"author": "Giuliano Marinelli",
"license": "MIT",
"main": "dist/index",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"prepublish": "npm run build"
},
"dependencies": {
"rxjs": "^7.8.1",
"ts-morph": "^20.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.3.1",
"rimraf": "^5.0.5",
"typescript": "^5.1.3",
"graphql": "^16.8.1"
},
"peerDependencies": {
"graphql": ">=16.8.1"
},
"homepage": "https://github.com/giuliano-marinelli/apollo-dynamic#readme",
"repository": {
"type": "git",
"url": "https://github.com/giuliano-marinelli/apollo-dynamic"
}
}