-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.17 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
{
"name": "genome-browser",
"version": "1.0.15",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.js",
"keywords": [
"genomic",
"genome browser",
"browser",
"bio",
"biology"
],
"files": [
"dist"
],
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"lodash": "^4.17.21",
"react-devtools": "^4.11.0",
"react-error-boundary": "^3.1.1",
"react-icons": "^4.2.0",
"react-redux": "^7.2.2",
"react-refresh-webpack-plugin": "^0.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-window": "^1.8.6",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build": "rollup -c",
"build-watch": "rollup -c -w"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"publishConfig": {
"@lebinh190998:registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.0",
"babel-preset-es2015": "^6.24.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.52.8",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-export-default": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}