-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "react-hydration-on-demand",
"version": "2.2.0",
"description": "Hydrate your React components only when you need to",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"build": "babel src --out-file dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valcol/react-hydration-on-demand.git"
},
"keywords": [
"react",
"hydrate",
"hydration",
"ssr",
"progressive",
"on-demand"
],
"author": "valcol",
"license": "MIT",
"bugs": {
"url": "https://github.com/valcol/react-hydration-on-demand/issues"
},
"homepage": "https://github.com/valcol/react-hydration-on-demand#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/react": "^14.2.1",
"babel-jest": "^26.6.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"exenv": "^1.2.2"
}
}