This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.81 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
{
"name": "competency-app-client",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"homepage": "https://competency.ebi.ac.uk/",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^16.0.0",
"@ckeditor/ckeditor5-react": "^2.1.0",
"@material-ui/core": "^4.0.2",
"@visual-framework/vf-tabs": "^2.1.0",
"axios": "^0.21.1",
"html-react-parser": "^0.7.1",
"json-2-csv": "^3.10.2",
"jspdf": "^1.5.3",
"lodash-es": "^4.17.11",
"moment": "^2.24.0",
"notistack": "^0.8.6",
"prop-types": "^15.7.2",
"rc-progress": "^2.3.0",
"react": "^16.8.6",
"react-butterfly-chart": "^1.0.2",
"react-ckeditor-component": "^1.1.0",
"react-collapsible": "^2.6.0",
"react-confirm-alert": "^2.6.1",
"react-csv": "^1.1.2",
"react-d3-radar": "^1.0.0-rc6",
"react-dom": "^16.8.6",
"react-drag-and-drop": "^3.0.0",
"react-dropzone": "^10.1.10",
"react-helmet": "^6.1.0",
"react-js-pagination": "^3.0.3",
"react-json-csv": "^2.0.0",
"react-meta-tags": "^1.0.1",
"react-modal": "^3.11.2",
"react-responsive-modal": "^5.0.2",
"react-router-dom": "^5.1.2",
"react-router-sitemap": "^1.1.0",
"react-scripts": "3.0.1",
"react-svg-radar-chart": "^1.2.0",
"react-tabs": "4.2.1",
"react-tooltip": "^4.1.1",
"swagger-ui-react": "^3.36.2",
"uuid": "^3.3.2"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"sitemap": "babel-node ./src/sitemap-builder.js"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-modal": "^3.8.2",
"@types/react-router-dom": "^4.3.4",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"gh-pages": "^2.0.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"npm-check-updates": "^3.1.10",
"prettier": "1.16.4",
"source-map-explorer": "^2.0.0",
"typescript": "^3.5.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "node githooks/prepare-commit-msg.js ${HUSKY_GIT_PARAMS}"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,html}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
}
}