forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.27 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
{
"name": "@shopify/react-server",
"version": "0.21.14",
"license": "MIT",
"description": "Utilities for React server-side rendering",
"main": "index.js",
"types": "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",
"dependencies": {
"@shopify/network": "^1.6.4",
"@shopify/react-async": "^3.2.8",
"@shopify/react-cookie": "^0.1.12",
"@shopify/react-effect": "^3.3.6",
"@shopify/react-html": "^10.2.11",
"@shopify/react-hydrate": "^1.2.7",
"@shopify/react-network": "^3.6.12",
"@shopify/sewing-kit-koa": "^6.4.5",
"@shopify/useful-types": "^2.4.2",
"chalk": "^2.4.2",
"koa": "^2.5.0",
"koa-compose": ">=3.0.0 <4.0.0",
"koa-mount": "^4.0.0"
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^2.3.4",
"@shopify/react-testing": "^2.3.5",
"@shopify/with-env": "^1.2.4",
"@types/koa": "^2.0.0",
"@types/webpack-virtual-modules": "^0.1.0",
"get-port": "^5.0.0",
"node-loader": "^1.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"saddle-up": "^0.5.1",
"webpack": "^4.25.1"
},
"peerDependencies": {
"cross-fetch": ">=3.0.0",
"react": ">=16.8.0 <17.0.0",
"react-dom": ">=16.8.0 <17.0.0"
},
"optionalDependencies": {
"@babel/types": ">=7.0.0",
"webpack-virtual-modules": "^0.2.2"
},
"files": [
"build/*",
"!*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
"index.d.ts",
"webpack-plugin.js",
"webpack-plugin.mjs",
"webpack-plugin.esnext",
"webpack-plugin.d.ts"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./": "./",
".": {
"import": "./index.mjs",
"require": "./index.js",
"esnext": "./index.esnext"
},
"./webpack-plugin": {
"import": "./webpack-plugin.mjs",
"require": "./webpack-plugin.js",
"esnext": "./webpack-plugin.esnext"
}
}
}