forked from traviswimer/react-hydration-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-hydration-provider",
"version": "1.0.2",
"license": "MIT",
"type": "module",
"description": "React tools for controlling what your app renders before and after app hydration.",
"keywords": [
"hydration",
"hydrated",
"hydration errors",
"SSR",
"SSG",
"DSG",
"server-side rendering",
"rendering"
],
"dependencies": {},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^28.1.4",
"@types/jsdom": "^16.2.14",
"@types/node": "^18.0.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.3",
"jsdom": "^20.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"wait-for-expect": "^3.0.2"
},
"peerDependencies": {
"react": ">=16"
},
"exports": {
".": {
"import": "./entry/index.js",
"require": "./entry/index.cjs"
}
},
"types": "dist/index.d.ts",
"main": "./entry/index.cjs",
"files": [
"/entry/",
"/dist/"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsup",
"test": "jest --coverage --watchAll",
"ci_test": "jest --coverage --ci",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/traviswimer/react-hydration-provider.git"
},
"bugs": {
"url": "https://github.com/traviswimer/react-hydration-provider/issues"
},
"homepage": "https://github.com/traviswimer/react-hydration-provider",
"contributors": [
{
"name": "Travis Wimer",
"url": "https://traviswimer.com"
}
]
}