-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 2.54 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
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
{
"name": "graphql-composer-decorators",
"version": "1.0.23",
"description": "Create your GraphQL API using decorators!",
"main": "build/Main.js",
"author": "Owen Calvin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/owencalvin/graphql-composer-decorators"
},
"bugs": {
"url": "https://github.com/owencalvin/graphql-composer-decorators/issues"
},
"contributors": [
{
"name": "Owen Calvin",
"url": "https://github.com/owencalvin"
}
],
"homepage": "https://owencalvin.github.io/graphql-composer-decorators/",
"keywords": [
"typescript",
"api",
"graphql",
"typed",
"type",
"query",
"mutation",
"subscription",
"interface",
"class",
"library",
"framework",
"tool",
"creation",
"rest",
"websocket",
"koa",
"controllers",
"decorators",
"middlewares"
],
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"test": "./node_modules/.bin/jest --detectOpenHandles --runInBand",
"build": "rm -rf build && tsc && cp ./package.json ./build/package.json && cp ./README.md ./build/README.md",
"publish:npm": "npm run build && cd build && npm publish && cd ..",
"docs:build": "vuepress build docs",
"publish:docs": "sh ./docs/.vuepress/deploy.sh"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/glob": "^7.1.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.14",
"@types/reflect-metadata": "^0.1.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-server": "^2.15.1",
"apollo-server-express": "^2.15.1",
"apollo-utilities": "^1.3.4",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"graphql-subscriptions": "^1.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^3.9.6",
"ws": "^7.3.0"
},
"dependencies": {
"glob": "^7.1.6",
"graphql-composer": "^1.0.65",
"reflect-metadata": "^0.1.13"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}