forked from uc-cdis/guppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "@gen3/guppy",
"version": "0.3.12",
"description": "Server that support GraphQL queries on data from elasticsearch",
"main": "src/server/server.js",
"directories": {
"doc": "doc"
},
"scripts": {
"start": "nodemon --exec babel-node ./src/server/server.js",
"test": "jest",
"eslint": "./node_modules/.bin/eslint --ext js --ext jsx --fix src",
"elint": "./node_modules/.bin/eslint --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "rm -rf dist && mkdir dist && babel src --out-dir dist --ignore '**/*/__tests__/*,**/*/__mocks__/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uc-cdis/guppy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/uc-cdis/guppy/issues"
},
"homepage": "https://github.com/uc-cdis/guppy#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.0.0-rc.1",
"@gen3/ui-component": "0.3.11",
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"file-saver": "^2.0.1",
"graphql": "^14.1.1",
"graphql-middleware": "^3.0.2",
"graphql-parse-resolve-info": "^4.1.0",
"graphql-tools": "^4.0.4",
"graphql-type-json": "^0.2.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"loglevel": "^1.6.1",
"node-fetch": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.1",
"@storybook/addon-links": "^5.1.1",
"@storybook/addons": "^5.1.1",
"@storybook/react": "^5.1.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"nock": "^10.0.6",
"nodemon": "^1.18.10",
"react-scripts": "^3.1.1",
"react-table": "^6.9.2"
}
}