-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.26 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@devinit/datahub-api",
"version": "1.2.0",
"description": "Apollo GraphQL server using webpack and typescript",
"main": "dist/main.min.js",
"publishConfig": {
"access": "public"
},
"now": {
"name": "datahub-api",
"type": "npm"
},
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test:watch": "npm test -- --watch",
"codecov": "npm run build && jest -u && codecov",
"start": "npm run build && NODE_ENV=production node dist/main.js",
"build": "NODE_ENV=production tsc",
"build:watch": "NODE_ENV=development tsc -w",
"patch": "release-it -i patch -n",
"feature": "release-it -i minor -n",
"breaking": "release-it -i major -n",
"gqlToTs": "gqlToTs",
"dev": "NODE_ENV=development concurrently \"npm run build:watch\" \"node-dev dist/main.js\""
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datahub/datahub-api.git"
},
"keywords": [
"apollo",
"node",
"backend",
"graphql-server",
"typescript",
"graphql",
"graphiql",
"express"
],
"author": "epicallan.al@gmail.com",
"bugs": {
"url": "https://github.com/devinit/datahub/issues"
},
"homepage": "https://github.com/devinit/datahub-api#readme",
"dependencies": {
"@devinit/prelude": "^1.1.1",
"@gql2ts/from-schema": "^1.8.2",
"apollo-server-express": "1.3.2",
"body-parser": "^1.18.3",
"color": "3.0.0",
"compression": "^1.7.3",
"cors": "2.8.4",
"csvtojson": "1.1.9",
"d3-color": "^1.2.0",
"d3-interpolate": "^1.2.0",
"d3-scale": "^2.1.0",
"express": "4.16.3",
"fs-extra": "5.0.0",
"glob-promise": "^3.4.0",
"graphql": "^0.13.2",
"graphql-tools": "2.21.0",
"helmet": "^3.13.0",
"lru-cache": "^4.1.3",
"merge-graphql-schemas": "^1.5.3",
"morgan": "^1.9.0",
"pg-promise": "^8.4.5",
"prettier": "^1.14.0",
"ramda": "0.25.0",
"shortid": "^2.2.12"
},
"devDependencies": {
"@gql2ts/types": "^1.8.1",
"@playlyfe/gql": "2.6.0",
"@types/body-parser": "^1.17.0",
"@types/color": "3.0.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/graphql": "^0.13.4",
"@types/helmet": "0.0.38",
"@types/jest": "22.2.0",
"@types/lru-cache": "^4.1.1",
"@types/morgan": "1.7.35",
"@types/node": "9.4.7",
"@types/ramda": "0.25.20",
"@types/shortid": "0.0.29",
"concurrently": "^3.6.1",
"git-pre-hooks": "1.2.0",
"graphql-tag": "^2.9.2",
"jest": "22.4.2",
"jest-cli": "22.4.2",
"node-dev": "3.1.3",
"pre-commit": "^1.2.2",
"pretty-format": "22.4.0",
"release-it": "^7.5.0",
"ts-jest": "22.4.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-microsoft-contrib": "^5.1.0",
"typescript": "2.7.2"
},
"git-pre-hooks": {
"pre-push": [
"npm run lint",
"npm run build"
]
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}