-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.75 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": "genetics-app",
"version": "0.4.0",
"license": "Apache-2.0",
"contributors": [
"Gareth Peat <[email protected]>",
"Alfredo Miranda <[email protected]>"
],
"bugs": {
"url": "https://github.com/opentargets/genetics/issues",
"email": "[email protected]"
},
"dependencies": {
"@apollo/client": "^3.4.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/inter": "^4.5.1",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.116",
"@mui/material": "^5.11.5",
"@mui/styles": "^5.11.2",
"axios": "^1.4.0",
"classnames": "^2.2.6",
"d3": "^5.5.0",
"d3-scale-chromatic": "^1.3.3",
"fg-loadcss": "^2.0.1",
"file-saver": "^2.0.5",
"graphql": "^15.5.1",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.21",
"logojs-react": "^2.1.1",
"polished": "^2.1.1",
"postcss-normalize": "^10.0.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^2.5.3",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-measure": "^2.1.0",
"react-router-dom": "^5.0.1",
"react-router-dom-v5-compat": "^6.8.0",
"react-scripts": "^5.0.1",
"react-select": "^2.0.0",
"react-sizeme": "^2.6.7",
"socket.io-client": "^4.6.1",
"source-map-explorer": "^1.5.0",
"string-sanitizer": "^2.0.2"
},
"scripts": {
"compile:gql": "graphql-codegen",
"start": "react-scripts start",
"build": "react-scripts build",
"build:serve": "serve -s build -l 5000",
"test": "react-scripts test --env=jsdom",
"test:coverage": "yarn test --coverage",
"eject": "react-scripts eject",
"analyse": "source-map-explorer build/static/js/main.*",
"prettier": "prettier --write",
"prettier:all": "prettier --write 'src/**/*.js' config-overrides.js",
"eslint": "eslint . --fix --ext .js",
"version": "yarn build",
"report:coverage": "codecov",
"test:nightwatch": "node end-to-end-test-runner.js",
"test:nightwatch:serve": "serve -s build -l 8080 &"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/client-preset": "^1.2.6",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@types/d3": "^7.4.0",
"@types/file-saver": "^2.0.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"babel-plugin-import": "^1.8.0",
"browserstack-local": "^1.4.0",
"codecov": "^3.7.1",
"dotenv-expand": "^10.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint-plugin-prettier": "^4.2.1",
"graphql.macro": "^1.4.2",
"install": "^0.13.0",
"lint-staged": "^7.2.0",
"nightwatch": "^1.1.13",
"npm": "^9.8.0",
"prettier": "^2.8.3",
"react-test-renderer": "^16.4.2",
"serve": "^11.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"resolutions": {
"@types/react": "^18.0.27"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!src/index.js",
"!src/registerServiceWorker.js",
"!src/setupTests.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}