-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (56 loc) · 1.31 KB
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
{
"name": "react-express-view",
"version": "2.0.0",
"description": "A template engine for Express that renders React components as server-side views with client hydration. Supports JSX and TSX.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"express",
"react",
"template engine",
"ssr",
"server-side-rendering",
"jsx",
"tsx"
],
"author": "abdanzamzam",
"license": "MIT",
"homepage": "https://github.com/abdanzamzam/react-express-view#readme",
"bugs": {
"url": "https://github.com/abdanzamzam/react-express-view/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdanzamzam/react-express-view.git"
},
"files": [
"index.d.ts",
"index.js",
"README.md"
],
"dependencies": {
"@babel/register": "^7.25.9"
},
"peerDependencies": {
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@babel/preset-typescript": {
"optional": true
}
},
"devDependencies": {
"express": "^4.21.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vitest": "^3.2.7"
}
}