-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.51 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": "sherlock-frontend",
"version": "1.0.0",
"scripts": {
"start": "vite --host localhost --port 3001 --strictPort --open",
"build": "rimraf dist && tsc && vite build",
"preview": "vite preview --host 0.0.0.0 --port 5000",
"compile": "tsc",
"clean-install": "rm package-lock.json && rm -rf node_modules && npm i --legacy-peer-deps",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"eslint-fix": "npm run eslint --fix",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/cytoscape": "^3.19.7",
"@types/react-cytoscapejs": "^1.2.2",
"axios": "^0.27.2",
"cytoscape-cose-bilkent": "^4.1.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"nmr-correlation": "^2.3.3",
"nmrium": "^0.30.0",
"openchemlib": "^8.0.1",
"react": ">=18.2.0",
"react-cytoscapejs": "^1.2.1",
"react-dom": ">=18.2.0",
"react-dropzone": "^14.2.2",
"react-intersection-observer": "^9.4.0",
"react-loader-spinner": "^5.3.3",
"react-mf": "^2.0.1",
"react-modal": "^3.15.1",
"react-ocl": "^5.0.0",
"react-split-pane": "^0.1.92"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"bootstrap": "^5.2.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"react-bootstrap": "^2.5.0",
"sass": "^1.54.5",
"typescript": "^4.8.2",
"vite": "^3.0.9"
},
"volta": {
"node": "16.14.2"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}