forked from tomyitav/graphql-server-typed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.07 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
{
"name": "@tomyitav/graphql-server-typed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-schema": "rimraf ./dist/graphql/schema/ && dir /s /b \"src/graphql/types\" | findstr /e .ts > ts-files.txt && tsc ./src/graphql/schema/genereator-schema.ts --outDir ./dist/graphql/schema/ --lib esnext && tsc @ts-files.txt --outDir ./dist/graphql/types --lib esnext && del ts-files.txt",
"generate-ts": "gql-gen --template ts --out ./src/interfaces/types.d.ts --export ./dist/graphql/schema/genereator-schema.js",
"pregenerate": "npm run build-schema",
"generate": "npm run generate-ts",
"clean": "rimraf dist",
"prebuild": "npm run clean && npm run generate",
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"core-js": "^2.5.1",
"cors": "^2.8.0",
"express": "4.14.0",
"graphql": "^0.13.0",
"graphql-code-generator": "^0.8.13",
"graphql-server-express": "^1.3.2",
"graphql-subscriptions": "^0.5.6",
"graphql-tools": "^2.18.0",
"injection-js": "^2.2.1",
"lodash": "^4.15.0",
"merge-graphql-schemas": "^1.4.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.2",
"subscriptions-transport-ws": "^0.9.5",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6",
"zone.js": "^0.8.18"
},
"devDependencies": {
"nodemon": "1.11.0",
"@types/graphql": "0.11.7",
"@types/mocha": "2.2.41",
"@types/node": "7.0.22",
"@types/winston": "^2.3.7",
"@types/lodash": "^4.14.100",
"@types/express": "^4.0.38",
"typescript": "^2.8.1",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"react-dom": "^15.6.0",
"supertest": "3.0.0",
"tsc": "1.20150623.0",
"typescript-eslint-parser": "3.0.0"
}
}