-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
{
"name": "miew-react",
"version": "0.11.0",
"description": "Miew - 3D Molecular Viewer (React component)",
"author": "EPAM Systems, Inc.",
"homepage": "https://github.com/epam/miew#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/epam/miew.git",
"directory": "packages/miew-react"
},
"bugs": {
"url": "https://github.com/epam/miew/issues"
},
"keywords": [
"molecule",
"visualizer",
"chemistry"
],
"packageManager": "yarn@3.6.3",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"types": "types/index.d.ts",
"files": [
"dist/**/*",
"types/**/*"
],
"scripts": {
"ci": "run-s lint test-cover build",
"lint": "prettier . --check && eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "prettier . --write; eslint . --ext js,jsx --fix",
"test": "jest",
"test-cover": "jest --coverage",
"build": "webpack --mode production"
},
"dependencies": {
"miew": "workspace:^"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-simple-dot-reporter": "^1.0.5",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}