1 | {
|
2 | "name": "graphql-codegen-typescript-server",
|
3 | "version": "0.15.0",
|
4 | "description": "graphql-codegen-cli template for TypeScript typings for both client side and server side",
|
5 | "repository": "git@github.com:dotansimha/graphql-code-generator.git",
|
6 | "license": "MIT",
|
7 | "scripts": {
|
8 | "prepublishOnly": "yarn build",
|
9 | "build": "codegen-templates-scripts build",
|
10 | "test": "codegen-templates-scripts test",
|
11 | "pretest": "yarn build"
|
12 | },
|
13 | "dependencies": {
|
14 | "graphql-codegen-typescript-common": "0.15.0"
|
15 | },
|
16 | "devDependencies": {
|
17 | "codegen-templates-scripts": "0.15.0",
|
18 | "graphql": "14.0.2",
|
19 | "graphql-codegen-core": "0.15.0",
|
20 | "graphql-codegen-plugin-handlebars-helpers": "0.15.0",
|
21 | "graphql-codegen-plugin-helpers": "0.15.0"
|
22 | },
|
23 | "main": "./dist/index.js",
|
24 | "typings": "dist/index.d.ts",
|
25 | "typescript": {
|
26 | "definition": "dist/index.d.ts"
|
27 | },
|
28 | "jest": {
|
29 | "globals": {
|
30 | "ts-jest": {
|
31 | "enableTsDiagnostics": false
|
32 | }
|
33 | },
|
34 | "transform": {
|
35 | "^.+\\.tsx?$": "ts-jest"
|
36 | },
|
37 | "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
38 | "moduleFileExtensions": [
|
39 | "ts",
|
40 | "tsx",
|
41 | "js",
|
42 | "jsx",
|
43 | "json",
|
44 | "node"
|
45 | ]
|
46 | }
|
47 | }
|