-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 KB
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
{
"name": "@depay/react-shadow-dom",
"moduleName": "ReactShadowDOM",
"version": "5.0.5",
"description": "A library to easily render react compatible shadow DOMs for web components with individual styling for inside and outside.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c rollup.module.config.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"dev": "rollup -c rollup.dev.config.js -w",
"test:cypress": "yarn cypress run",
"test:cypress:debug": "yarn cypress run --headed --no-exit",
"test:integration": "yarn cypress run",
"test": "yarn test:integration"
},
"repository": "git@github.com:DePayFi/react-shadow-dom.git",
"keywords": [
"react",
"shadow dom",
"shadow",
"dom",
"web component"
],
"author": "depay.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/DePayFi/react-shadow-dom/issues"
},
"homepage": "https://depay.com",
"private": false,
"dependencies": {},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cypress": "^6.2.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"prettier": "^2.2.1",
"react": "^18",
"react-dom": "^18",
"react-test-renderer": "^18.1.0",
"react-testing-library": "^8.0.1",
"rollup": "^2.52.8",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0"
}
}