-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.34 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.34 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
{
"name": "@devinit/graphql-next",
"version": "0.4.3",
"description": "simple graphql framework @devinit",
"main": "lib/index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest",
"coverage": "NODE_ENV=test jest && codecov",
"patch": "release-it -i patch -n",
"feature": "release-it -i minor -n",
"breaking": "release-it -i major -n",
"build": "tsc"
},
"bin": {
"gqlToTs": "cli.js"
},
"author": "epicallan.al@gmail.com",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/devinit/graphql-next.git"
},
"peerDependencies": {
"graphql": ">= 0.10.0 < 0.12.0"
},
"dependencies": {
"@devinit/prelude": "1.0.7",
"@gql2ts/from-schema": "1.4.3",
"apollo-server-express": "1.3.2",
"body-parser": "1.18.2",
"compression": "1.7.2",
"cors": "2.8.4",
"csvtojson": "1.1.9",
"express": "4.16.3",
"fs-extra": "5.0.0",
"glob-promise": "3.3.0",
"graphql-tools": "2.21.0",
"helmet": "3.12.0",
"lru-cache": "4.1.2",
"merge-graphql-schemas": "1.5.0",
"morgan": "^1.9.0",
"pg-promise": "8.2.2",
"prettier": "1.11.1",
"ramda": "0.25.0",
"shortid": "2.2.8"
},
"devDependencies": {
"@gql2ts/types": "1.5.0",
"@types/body-parser": "1.16.8",
"@types/cors": "2.8.3",
"@types/express": "4.11.1",
"@types/fs-extra": "5.0.1",
"@types/graphql": "0.12.3",
"@types/helmet": "0.0.37",
"@types/jest": "22.2.0",
"@types/lru-cache": "4.1.0",
"@types/morgan": "1.7.35",
"@types/node": "9.4.7",
"@types/ramda": "0.25.20",
"@types/shortid": "0.0.29",
"concurrently": "3.5.1",
"git-pre-hooks": "1.2.0",
"graphql-tag": "2.8.0",
"jest": "22.4.2",
"jest-cli": "22.4.2",
"pretty-format": "22.4.0",
"release-it": "7.2.1",
"ts-jest": "22.4.1",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"git-pre-hooks": {
"pre-push": [
"npm run lint",
"npm run build"
]
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}