forked from LukasBombach/react-web-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 912 Bytes
/
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
{
"name": "react-web-component",
"version": "2.0.1",
"description": "Create Web Components with React",
"main": "src/index.js",
"types": "index.d.ts",
"author": "Lukas Bombach <[email protected]>",
"license": "MIT",
"repository": "WeltN24/react-web-component",
"scripts": {
"build": "babel src/dev -d src --presets minify"
},
"dependencies": {
"react-shadow-dom-retarget-events": "^1.0.8",
"@webcomponents/custom-elements": "^1.2.1",
"@webcomponents/shadydom": "^1.4.3"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@types/react": "^16.0.38",
"babel-cli": "^6.26.0",
"babel-minify": "^0.3.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.3.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-plugin-transform-es2015-classes": "^6.24.1"
}
}