-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrhp-package.json
100 lines (100 loc) · 3 KB
/
rhp-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": "@bezda/rhp",
"version": "0.0.23",
"description": "A React component library for creating HTML plots",
"author": {
"name": "Bouzid Anas",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bouzidanas/react-html-plots"
},
"homepage": "https://bouzidanas.github.io/react-html-plots",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@legendapp/state": "^1.11.1",
"@types/node": "^12.20.55",
"isomorphic-dompurify": "^1.9.0"
},
"peerDependencies": {
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@chakra-ui/react": "^2.8.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^28.1.8",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@legendapp/state": "^1.11.1",
"framer-motion": "^6.5.1",
"gh-pages": "^6.0.0",
"isomorphic-dompurify": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-icons": "^3.11.0",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"rollup": "rm -rf dist && rollup -c",
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm install",
"core": "bash update-pkg-meta.sh core && bash update-rollup-config.sh core",
"base": "bash update-pkg-meta.sh base && bash update-rollup-config.sh base",
"full": "bash update-pkg-meta.sh && bash update-rollup-config.sh",
"update:core": "npm run core && npm run reinstall && npm run rollup",
"update:base": "npm run base && npm run reinstall && npm run rollup",
"update:full": "npm run full && npm run reinstall && npm run rollup"
},
"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"
]
},
"overrides": {
"nth-check": "2.0.1",
"rollup-plugin-terser": "@rollup/[email protected]"
},
"resolutions": {
"postcss": "^8.4.31"
}
}