-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
96 lines (96 loc) · 2.88 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
{
"name": "platform-app",
"version": "0.1.2",
"license": "Apache-2.0",
"contributors": [
"Gareth Peat <[email protected]>",
"Alfredo Miranda <[email protected]>"
],
"bugs": {
"url": "https://github.com/opentargets/platform/issues",
"email": "[email protected]"
},
"dependencies": {
"@apollo/client": "^3.3.4",
"@clampy-js/react-clampy": "^1.2.0",
"@ebi-gene-expression-group/expression-atlas-heatmap-highcharts": "^5.4.1-beta1",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@swissprot/swissbiopics-visualizer": "^0.0.28",
"classnames": "^2.2.6",
"d3": "^5.9.2",
"d3-dag": "^0.5.0",
"d3-format": "^3.0.1",
"file-saver": "^1.3.8",
"graphiql": "^1.4.2",
"graphql": "^15.0.0",
"graphql-anywhere": "^4.2.7",
"graphql.macro": "^1.4.2",
"litemol": "^2.4.2",
"local-storage": "^2.0.0",
"lodash": "^4.17.21",
"particles.js": "^2.0.0",
"polished": "^2.3.0",
"protvista-uniprot": "^2.8.3",
"query-string": "^6.10.1",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.14.0",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.0.0",
"react-measure": "^2.1.2",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.3",
"react-scroll": "^1.7.16",
"react-sticky": "^6.0.3",
"recoil": "^0.3.0",
"smiles-drawer": "^1.1.22",
"typeface-inter": "^3.3.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "REACT_APP_BUILD_ID=\"$(nanoid)\" GENERATE_SOURCEMAP=false react-scripts build",
"build:sourcemap": "REACT_APP_BUILD_ID=\"$(nanoid)\" GENERATE_SOURCEMAP=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier": "prettier --write",
"prettier:all": "prettier --write 'src/**/*.js'",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"test:nightwatch": "node ./test/end-to-end-test-runner.js -c nightwatch.conf.js -e chrome,firefox,safari,ie"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie > 0",
"not op_mini all"
],
"devDependencies": {
"browserstack-local": "^1.4.5",
"cross-fetch": "^3.1.4",
"husky": ">=4",
"lint-staged": ">=10",
"nanoid-cli": "^1.1.0",
"nightwatch": "^1.1.13",
"node-sass": "^4.14.0",
"prettier": "1.15.1",
"source-map-explorer": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}