This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.26 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
{
"name": "@borderless/site",
"version": "0.1.2",
"publishConfig": {
"access": "public"
},
"description": "Server side rendering for react.js applications",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/borderless/site.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/borderless/site",
"bugs": {
"url": "https://github.com/borderless/site/issues"
},
"bin": "./dist/bin.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./adapters/node": "./dist/adapters/node.js",
"./adapters/worker": "./dist/adapters/worker.js",
"./app": "./dist/app.js",
"./client": "./dist/client.js",
"./dev": "./dist/dev.js",
"./document": "./dist/document.js",
"./head": "./dist/head.js",
"./server": "./dist/server.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "ts-scripts build",
"example:test": "npm run site -- --root examples/test",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"site": "node dist/bin.js",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/"
],
"keywords": [
"server",
"render",
"static",
"site",
"render",
"react",
"reactjs"
],
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@borderless/router": "^1.0.4",
"@vitejs/plugin-react": "^1.3.2",
"arg": "^5.0.0",
"chokidar": "^3.5.2",
"iterative": "^1.9.2",
"raw-body": "^2.5.1",
"react-helmet-async": "^1.3.0",
"vite": "^2.9.9",
"youch": "^3.2.0"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.12.0",
"@cloudflare/workers-types": "^3.11.0",
"@jest/globals": "^28.0.3",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.7.2"
},
"types": "./dist/index.d.ts",
"browser": {
"stream": false
},
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}