-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.23 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
{
"scripts": {
"dev": "next",
"build": "npm run lint && npm run test && next build && next export",
"update": "env-cmd -f .env.production npm run-script build",
"staging": "env-cmd -f .env.staging npm run-script build",
"local": "env-cmd -f .env.local npm run-script build",
"start": "next start",
"export": "next export",
"test": "jest",
"lint": "eslint src"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@jbrowse/react-linear-genome-view": "^2.4.2",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.11.8",
"@tippyjs/react": "^4.2.0",
"animate": "^1.0.0",
"animate.css": "^4.1.1",
"classnames": "^2.2.6",
"env-cmd": "^10.1.0",
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"json2csv": "^5.0.6",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"match-sorter": "^6.2.0",
"materialize-css": "^1.0.0-rc.2",
"next": "^12.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-chartjs-2": "^5.2.0",
"react-collapse": "^5.1.0",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
"react-error-boundary": "^3.1.3",
"react-hook-form": "^6.15.1",
"react-icons": "^4.2.0",
"react-leaflet": "^3.1.0",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-public-ip": "^1.0.0",
"react-select": "^4.1.0",
"react-table": "^7.6.3",
"react-vtree": "^3.0.0-beta.0",
"react-window": "^1.8.6",
"recharts": "^2.5.0",
"remark-parse": "^9.0.0",
"remark-react": "^8.0.0",
"swr": "^0.4.2",
"tippy.js": "^6.2.7",
"unified": "^9.2.0",
"use-deep-compare-effect": "^1.6.1",
"victory": "^36.6.10"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"bulma": "^0.9.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.2.0",
"http-proxy-middleware": "^1.0.6",
"husky": "^5.0.9",
"jest": "^26.6.3",
"js-yaml-loader": "^1.2.2",
"neat-csv": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"sass": "^1.32.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}