forked from alfed7/reactssr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.47 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@react5/ssr",
"version": "0.2.5",
"description": "React SSR convenience functions.",
"main": "build/esm/index.esm.js",
"module": "build/esm/index.esm.js",
"types": "build/types/index.d.ts",
"type": "module",
"repository": "https://github.com/react5com/ssr.git",
"author": "React5.com",
"license": "MIT",
"peerDependencies": {
"parseurl": ">=1.3.3",
"express": ">=4.x",
"react": ">=18.x",
"react-router": ">=7.x",
"@react5/reducer": ">=0.6.21",
"@react5/router-layout": ">=0.4.4",
"@react5/helmet": ">=0.4.3",
"serialize-javascript": ">=6.x",
"i18next": ">=23.x",
"react-i18next": ">=15.x",
"i18next-http-middleware": ">=3.x"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/parseurl": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@types/express": "^5.0.5",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/serialize-javascript": "^5.0.4",
"eslint": "^9.38.0",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"prettier-eslint-cli": "^8.0.1",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"parseurl": "^1.3.3",
"express": "^5.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.5",
"@react5/reducer": "^0.6.21",
"@react5/router-layout": "^0.4.4",
"@react5/helmet": "^0.4.3",
"serialize-javascript": "^7.0.0",
"rollup": "^4.52.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-commonjs": "^29.0.0",
"i18next": "^25.6.0",
"react-i18next": "^16.2.2",
"i18next-http-middleware": "^3.8.1"
},
"scripts": {
"build": "npm-run-all tsc rollup",
"rollup": "rollup -c --filterLogs '!message:*__PURE__*'",
"clean": "rm -rf build",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel tsc-watch watch",
"tsc": "tsc -b",
"tsc-watch": "tsc -b --watch",
"lint": "eslint \"src/**\" --ext .ts --ext .tsx",
"test": "jest"
}
}