This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "web-component-to-react",
"version": "0.0.0-development",
"description": "create universal and hydratable react wrapper for custom-elements/web-components",
"main": "server",
"browser": "browser",
"scripts": {
"test": "jest",
"start": "node demo/server.js",
"prepare": "npm run build",
"build": "babel src -d lib",
"build:demo": "stencil build",
"lint": "eslint --ext js,jsx .",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/patternsonio/web-component-to-react.git"
},
"keywords": [
"react",
"web-components",
"custom-elements",
"reactjs",
"wrapper",
"server side rendering",
"universal",
"hydration",
"ssr"
],
"author": "patternson.io, Hannes Diercks <moin@patternson.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternsonio/web-component-to-react/issues"
},
"homepage": "https://github.com/patternsonio/web-component-to-react#readme",
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@stencil/core": "^0.9.7",
"babel-eslint": "8.2.3",
"cypress": "^3.0.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.9.1",
"next": "^6.0.3",
"prettier": "1.13.5",
"prop-types": "15.6.1",
"react": "16.4.0",
"react-dom": "16.4.0",
"semantic-release": "^15.5.2"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"memoize-one": "^3.1.1"
}
}