-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
114 lines (114 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "search-portal",
"version": "0.3.0",
"private": true,
"dependencies": {
"@js4cytoscape/cx2js": "^0.6.7-alpha.1",
"@js4cytoscape/ndex-client": "^0.4.3-alpha.12",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.28",
"@material-ui/styles": "^4.11.4",
"classnames": "^2.3.1",
"cyannotation-cx2js": "^0.8.5",
"cytoscape": "^3.20.0",
"cytoscape-canvas": "^3.0.1",
"cytoscape-panzoom": "^2.5.3",
"html-react-parser": "^1.4.5",
"husky": "^7.0.4",
"keycloak-js": "^25.0.1",
"linkify-react": "^3.0.4",
"linkifyjs": "^3.0.5",
"lint-staged": "^12.1.7",
"query-string": "^7.1.0",
"react": "^17.0.2",
"react-cytoscapejs": "^1.2.1",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.4",
"react-ga": "^3.3.0",
"react-ga4": "^1.4.1",
"react-map-interaction": "^2.1.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.0.1",
"react-split": "^2.0.14",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"typeface-roboto": "^1.1.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"dotenv-cli": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"react-scripts": "^5.0.0",
"react-test-renderer": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"redux-saga-test": "^1.0.1",
"redux-saga-test-plan": "^4.0.4",
"serialize-javascript": "^6.0.0",
"sinon": "12.0.1",
"typescript": "^4.5.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/"
],
"coverageThreshold": {
"global": {
"lines": 99,
"statements": 99
}
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off"
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"start": "PORT=5500 react-scripts start",
"build": "react-scripts build",
"build:dev": "dotenv -e .env.development react-scripts build",
"test": "react-scripts test --coverage --watchAll",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"homepage": "./iquery"
}