generated from graphql-api/graphql-api-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.75 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@graphql-api/stackblitz",
"version": "0.1.0",
"description": "GraphQL API for StackBlitz integration",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./resolvers": {
"import": "./dist/esm/resolvers.js",
"require": "./dist/cjs/resolvers.js",
"types": "./dist/types/resolvers.d.ts"
},
"./schema": {
"import": "./schema.graphql",
"require": "./schema.graphql"
}
},
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
],
"resolvers": [
"./dist/types/resolvers.d.ts"
]
}
},
"files": [
"dist",
"schema.graphql",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:clean && npm run build:types && npm run build:js && npm run build:schema",
"build:clean": "rimraf dist",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"build:js": "rollup -c",
"build:schema": "graphql-codegen",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"codegen": "graphql-codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-api/graphql-api-template.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/graphql-api",
"access": "public"
},
"keywords": [
"graphql",
"apollo",
"gql",
"stackblitz",
"sdk",
"typescript"
],
"author": "Jonathan Allenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-api/graphql-api-template/issues"
},
"homepage": "https://github.com/graphql-api/graphql-api-template#readme",
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/schema-ast": "^2.4.1",
"@graphql-codegen/typescript": "^2.4.5",
"@graphql-codegen/typescript-apollo-client-helpers": "^2.1.12",
"@graphql-codegen/typescript-resolvers": "^2.5.2",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"apollo-server-micro": "^3.6.3",
"eslint": "^8.17.0",
"graphql": "^16.3.0",
"jest": "^28.1.1",
"micro": "^9.3.4",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"@apollo/datasource-rest": "^4.0.0",
"@apollo/server": "^4.7.1",
"@stackblitz/sdk": "^1.11.0",
"graphql-tag": "^2.12.6"
},
"peerDependencies": {
"graphql": "^16.0.0"
}
}