-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"name": "@sujii/partial-hydration-with-server-components",
"version": "0.0.1",
"description": "Personal-Testing: React/Next - partial-hydration-with-server-components",
"license": "MIT",
"author": {
"name": "Susumu Fujii",
"email": "[email protected]",
"twitter": "@sujii"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sujii/partial-hydration-with-server-components"
},
"scripts": {
"client": "yarn workspace @sujii/partial-hydration-with-server-components-client",
"server": "yarn workspace @sujii/partial-hydration-with-server-components-server"
},
"dependencies": {
"@sujii/partial-hydration-with-server-components-client": "*",
"@sujii/partial-hydration-with-server-components-server": "*"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@types/node": "^20.3.0",
"@types/vscode": "^1.78.0",
"cross-env": "^7.0.3",
"date-fns": "2.30.0",
"depcheck": "^1.4.3",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"next": "13.4.4",
"nodenv": "^0.1.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typedoc": "0.24.8",
"typescript": "<5.1.0",
"webpack": "^5.84.1"
},
"engines": {
"node": ">=18.16.0",
"yarn": ">=1.22.19"
},
"private": true,
"husky": {
"hooks": {
"preinstall": "npx -y only-allow yarn",
"pre-commit": "lint-staged"
}
},
"lint-staged": [
"yarn exec lint-staged --concurrent false -c lint-staged.mjs",
"yarn fixpack"
],
"simple-git-hooks": {
"pre-commit": "lint-staged"
},
"type": "module",
"workspaces": [
"packages/client",
"packages/server"
]
}