-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.54 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": "@shopify/react-server",
"version": "5.0.1",
"license": "MIT",
"description": "Utilities for React server-side rendering",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"webpack-plugin": [
"./build/ts/webpack-plugin/index.d.ts"
]
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/react-server"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-server/README.md",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"dependencies": {
"@shopify/network": "^3.2.1",
"@shopify/react-async": "^5.3.0",
"@shopify/react-cookie": "^2.0.15",
"@shopify/react-effect": "^5.0.3",
"@shopify/react-html": "^13.0.6",
"@shopify/react-hydrate": "^3.0.10",
"@shopify/react-network": "^5.0.15",
"@shopify/sewing-kit-koa": "^9.2.0",
"chalk": "^2.4.2",
"koa": "^2.13.4",
"koa-compose": ">=4.0.0 <5.0.0",
"koa-mount": "^4.0.0"
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^5.1.1",
"@shopify/react-testing": "^5.1.4",
"@shopify/with-env": "^3.0.1",
"@types/koa": "^2.0.0",
"@types/webpack-virtual-modules": "^0.1.0",
"get-port": "^5.0.0",
"memfs": "^3.2.2",
"node-loader": "^1.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"saddle-up": "^0.5.4",
"setimmediate": "^1.0.5",
"webpack": "^5.38.0"
},
"peerDependencies": {
"cross-fetch": ">=3.0.0",
"react": ">=18.0.0 <19.0.0",
"react-dom": ">=18.0.0 <19.0.0"
},
"optionalDependencies": {
"@babel/types": ">=7.0.0",
"webpack-virtual-modules": "^0.4.3"
},
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext",
"webpack-plugin.js",
"webpack-plugin.mjs",
"webpack-plugin.esnext"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./webpack-plugin": {
"types": "./build/ts/webpack-plugin/index.d.ts",
"esnext": "./webpack-plugin.esnext",
"import": "./webpack-plugin.mjs",
"require": "./webpack-plugin.js"
},
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
}
}