-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
100 lines (100 loc) · 3.01 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
{
"name": "sequence-tube-maps",
"version": "0.1.0",
"author": "Wolfgang Beyer",
"license": "MIT",
"dependencies": {
"@bjorn3/browser_wasi_shim": "^0.2.17",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.13.0",
"@streamparser/json": "^0.0.17",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"body-parser": "^1.20.2",
"bootstrap": "^5.2.3",
"compression": "^1.7.4",
"concurrently": "^7.6.0",
"d3": "^5.16.0",
"d3-selection-multi": "^1.0.1",
"deep-equal": "^2.2.1",
"dotenv": "^16.0.3",
"es-dirname": "^0.1.0",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"gbz-base": "^0.1.0-alpha.1",
"gh-pages": "^4.0.0",
"markdown-to-jsx": "^7.4.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.2",
"patch-package": "^8.0.0",
"path-is-inside": "^1.0.2",
"polyfill-object.fromentries": "^1.0.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-bootstrap": "^2.7.4",
"react-color": "^2.19.3",
"react-demo": "^2.0.0",
"react-demo-library": "^2.0.0",
"react-dom": "^17.0.2",
"react-fast-compare": "^3.2.1",
"react-router-dom": "^6.11.1",
"react-scripts": "5.0.1",
"react-select": "^5.7.3",
"react-select-event": "^5.5.1",
"react-switch": "^7.0.0",
"reactjs-popup": "^2.0.5",
"reactstrap": "^9.1.9",
"readers-writer-lock": "^1.0.0",
"sanitize-filename": "^1.6.3",
"uuid": "^9.0.0",
"webpack": "^5.82.0",
"webpack-dev-server": "4.11.1",
"websocket": "^1.0.34",
"which": "^4.0.0",
"worker-rpc": "^0.2.0"
},
"scripts": {
"start": "concurrently -n frontend,backend -c red,green 'HOST=${HOST:=127.0.0.1} PORT=${PORT:=3001} react-scripts start' 'npm:serve'",
"build": "react-scripts build",
"test": "react-scripts test --testResultsProcessor=./node_modules/jest-html-reporter --reporters default jest-compact-reporter --seed=1",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"serve": "node ./src/server.mjs",
"format": "prettier --write \"**/*.+(mjs|js|css)\"",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"jest-compact-reporter": "^1.2.9",
"jest-fetch-mock": "^3.0.3",
"jest-html-reporter": "^3.10.2",
"prettier": "^2.8.8",
"qs": "^6.11.1"
},
"jest": {
"resetMocks": false,
"transformIgnorePatterns": [
"node_modules/(?!(@streamparser/json|@bjorn3/browser_wasi_shim)/)"
]
}
}