-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "@kkt/react-ssr-enhanced",
"version": "3.1.10",
"description": "KKT react server side rendering enhancement tool.",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"watch": "tsbb watch",
"build": "tsbb build"
},
"keywords": [
"kkt",
"react",
"react-router",
"redux",
"rematch",
"webpack",
"ssr"
],
"files": [
"lib",
"esm",
"src"
],
"author": "Kenny Wong <wowohoo@qq.com> (https://github.com/jaywcjlove)",
"license": "MIT",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"redux": "^4.1.2"
},
"dependencies": {
"@babel/runtime": "^7.17.7",
"react-helmet": "^6.1.0",
"serialize-javascript": "^6.0.0"
},
"devDependencies": {
"@rematch/core": "2.2.0",
"@types/react-helmet": "6.1.5",
"@types/serialize-javascript": "5.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"redux": "4.1.2",
"tsbb": "~3.7.2"
}
}