-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "allotr-graphql-schema-types",
"version": "3.0.4",
"description": "",
"main": "./lib/generated/graphql.js",
"types": "./lib/generated/graphql.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"generate": "graphql-codegen --config codegen.yml",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run test",
"version": "git add -A src",
"postversion": "git push && git push origin --tags"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-codegen/typescript-mongodb": "2.4.6",
"@types/react": "^18.2.21",
"graphql": "^15.8.0",
"graphql-tag": "^2.0.0",
"mongodb": "^4.17.1"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "2.1.1",
"@graphql-codegen/typescript": "2.1.2",
"@graphql-codegen/typescript-document-nodes": "^2.1.2",
"@graphql-codegen/typescript-graphql-files-modules": "2.1.0",
"@graphql-codegen/typescript-operations": "2.1.2",
"@graphql-codegen/typescript-resolvers": "2.1.2",
"typescript": "^4.3.5"
},
"files": [
"lib/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Allotr/graphql-schema-types.git"
}
}