-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
{
"name": "miew-app",
"version": "0.11.0",
"description": "React application demonstrating capabilities of Miew library",
"author": "EPAM Systems, Inc.",
"private": true,
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"ci": "run-s clean lint test-cover build",
"clean": "rimraf build",
"lint": "eslint -f unix --ext .js,.jsx src/ ",
"lint:css": "stylelint '**/*.scss'",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open",
"test": "jest",
"test-cover": "jest --coverage",
"show:cover": "node tools/open.mjs coverage/lcov-report/index.html"
},
"keywords": [
"molecule",
"protein",
"chemistry",
"miew",
"webgl",
"threejs",
"react"
],
"moduleDirectories": [
"node_modules",
"src"
],
"css": {
"includePaths": [
"./node_modules"
]
},
"dependencies": {
"bootstrap": "^4.6.2",
"bootstrap-switch-button-react": "^1.2.0",
"classnames": "^2.5.1",
"jquery": "^3.7.1",
"jquery.terminal": "^2.42.2",
"miew": "workspace:^",
"react": "^16.14.0",
"react-bootstrap": "^2.10.4",
"react-dom": "^16.14.0",
"react-icons": "^5.3.0",
"react-redux": "^7.2.9"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@testing-library/react": "^12.1.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-simple-dot-reporter": "^1.0.5",
"mini-css-extract-plugin": "^2.9.1",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"redux": "^4.2.1",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}