-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "modernjs-ssr-dynamic-nested-remote",
"private": true,
"version": "0.1.34",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
"build": "modern build",
"start": "FEDERATION_DEBUG=true modern start",
"serve": "modern serve",
"new": "modern new",
"lint": "modern lint",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=16.18.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@babel/runtime": "7.28.2",
"@modern-js/runtime": "3.0.1",
"@module-federation/modern-js-v3": "workspace:*",
"antd": "4.24.15",
"react": "~18.3.1",
"react-dom": "~18.3.1"
},
"devDependencies": {
"@modern-js-app/eslint-config": "2.59.0",
"@modern-js/app-tools": "3.0.1",
"@modern-js/eslint-config": "2.59.0",
"@modern-js/tsconfig": "3.0.1",
"@types/jest": "~29.5.0",
"@types/node": "^20.19.5",
"@types/react": "~18.2.0",
"@types/react-dom": "~18.3.0",
"lint-staged": "~13.1.0",
"prettier": "~3.3.3",
"rimraf": "~6.0.1",
"typescript": "~5.0.4"
}
}