-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-server-renderer",
"version": "2.0.3",
"type": "module",
"description": "Yet another simple React SSR solution inspired by vue-server-render",
"repository": "[email protected]:un-ts/react-server-renderer.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^12.20.0 || >=14.13.0"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
},
"./client-plugin": "./lib/webpack-plugin/client.js",
"./server-plugin": "./lib/webpack-plugin/server.js",
"./package.json": "./package.json"
},
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "run-p 'build:*'",
"build:r": "r -f cjs",
"build:tsc": "tsc",
"codesandbox:install": "yarn --ignore-engines",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"release": "yarn build && clean-pkg-json && changeset publish",
"typecov": "type-coverage"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0",
"webpack": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"hash-sum": "^2.0.0",
"lodash": "^4.17.21",
"resolve": "^1.22.8",
"serialize-javascript": "^6.0.1",
"source-map": "^0.7.4"
},
"devDependencies": {
"@1stg/common-config": "^10.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.4",
"@pkgr/rollup": "^5.0.0",
"@types/hash-sum": "^1.0.2",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/resolve": "^1.20.6",
"@types/serialize-javascript": "^5.0.4",
"@types/webpack": "^5.28.5",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"react": "18.2.0",
"react-async-component": "^2.0.0",
"react-dom": "^18.2.0",
"simple-git-hooks": "^2.9.0",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3"
},
"resolutions": {
"prettier": "^3.1.1"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"ignoreFiles": [
"*.d.ts"
],
"ignoreNested": true,
"showRelativePath": true,
"skipCatch": true,
"strict": true,
"update": true
}
}