forked from alfed7/react-reducer-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "@react5/reducer",
"version": "0.6.26",
"homepage": "https://github.com/react5com/reducer",
"repository": "https://github.com/react5com/reducer",
"author": "React5.com",
"description": "React reducer with server side rendering",
"license": "MIT",
"private": false,
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"dependencies": {
},
"peerDependencies": {
"react": ">=18.x"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.6",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.57.1",
"jest": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"typescript": "^5.9.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.4.6"
},
"scripts": {
"tsc": "tsc -b",
"tsc-watch": "tsc -b --watch",
"lint": "eslint \"src/**\" --ext .ts --ext .tsx",
"build": "npm run tsc & rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "npm run build"
},
"files": [
"dist"
]
}