-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.21 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
{
"public": true,
"name": "@module-federation/nextjs-ssr",
"version": "0.2.0-rc.2",
"description": "Module Federation CSR & SSR Support for Next.js",
"main": "bundle.js",
"types": "index.d.ts",
"repository": "https://github.com/module-federation/nextjs-ssr",
"author": "Zack Jackson <zackary.l.jackson@gmail.com>",
"license": "MIT",
"scripts": {
"prettier": "prettier --write \"**/*.{js,json,md,ts,tsx}\"",
"build": "rollup --config rollup.config.js && rollup --config rollup.flushchunks.config.js",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"registry": "https://r.privjs.com"
},
"dependencies": {
"chalk": "4.1.2",
"encoding": "^0.1.13",
"lodash.clonedeep": "^4.5.0",
"webpack-federated-stats-plugin": "^2.0.9"
},
"peerDependencies": {
"next": "^12.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"next": "^12.1.5",
"node-fetch": "^3.2.3",
"prettier": "2.3.2",
"rollup": "^2.64.0",
"rollup-obfuscator": "^2.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.65.0"
}
}