forked from uc-cdis/guppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.98 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
{
"name": "@gen3/guppy",
"version": "0.18.1",
"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",
"gendata": "node ./genData/genData.js",
"test": "jest",
"eslint": "./node_modules/.bin/eslint --ext js --ext jsx --fix src",
"elint": "./node_modules/.bin/eslint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"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": {
"@apollo/server": "^4.10.3",
"@elastic/elasticsearch": "~7.13.0",
"@gen3/ui-component": "^0.11.4",
"array.prototype.flat": "^1.3.2",
"array.prototype.flatmap": "^1.3.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dd-trace": "^4.5.0",
"express": "^4.19.2",
"file-saver": "^2.0.5",
"flat": "^5.0.2",
"graphql": "^16.7.1",
"graphql-depth-limit": "^1.1.0",
"graphql-middleware": "^6.1.34",
"graphql-parse-resolve-info": "^4.13.0",
"graphql-tools": "^9.0.1",
"graphql-type-json": "^0.3.2",
"helmet": "^7.1.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"node-fetch": "^2.7.0",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/node": "^7.22.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-stage-0": "^7.8.3",
"@babel/runtime-corejs3": "^7.22.6",
"@storybook/addon-actions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-webpack5": "^7.0.26",
"antd": "^4.24.11",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.2",
"commander": "^3.0.2",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.6.1",
"json-schema-faker": "^0.5.3",
"nock": "^13.3.1",
"nodemon": "^2.0.22",
"storybook": "^7.0.26"
},
"overrides": {
"glob-parent": "^5.1.2",
"semver": "^7.5.2",
"@storybook/react": {
"strip-ansi": "6.0.1",
"trim": "0.0.3"
},
"default-browser-id": {
"meow": "6.1.0"
}
}
}