-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.55 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
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
{
"name": "performance-compare",
"version": "0.0.0",
"packageManager": "[email protected]",
"dependencies": {
"@iconify-icons/material-symbols": "^1.2.58",
"@iconify/react": "^5.2.0",
"puppeteer": "^23.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.2",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "1.6.6",
"@farmfe/plugin-react": "^1.2.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@rsbuild/core": "^1.2.2",
"@rsbuild/plugin-react": "^1.1.0",
"@rspack/cli": "^1.2.2",
"@rspack/core": "^1.2.2",
"@rspack/plugin-react-refresh": "^1.0.1",
"@swc/css": "^0.0.28",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@umijs/mako": "^0.11.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"babel-loader": "^9.2.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"next": "^15.1.6",
"react-refresh": "^0.16.0",
"rolldown": "^1.0.0-beta.3",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"scripts": {
"benchmark": "node benchmark.mjs",
"clean": "rm -rf ./node_modules/.cache && rm -rf ./node_modules/.vite && rm -rf ./node_modules/.farm",
"start:farm": "farm start",
"build:farm": "farm build",
"start:vite": "vite",
"build:vite": "vite build",
"start:webpack": "cross-env NODE_ENV=development webpack serve --mode development",
"build:webpack": "cross-env NODE_ENV=production webpack build --mode production",
"start:rspack": "cross-env NODE_ENV=development rspack serve",
"start:rspack:lazy": "cross-env NODE_ENV=development LAZY=true rspack serve",
"start:rspack:incremental": "cross-env NODE_ENV=development INCREMENTAL=true rspack serve",
"build:rspack": "cross-env NODE_ENV=production rspack build",
"start:rsbuild": "rsbuild dev",
"start:rsbuild:lazy": "cross-env LAZY=true rsbuild dev",
"start:rsbuild:incremental": "cross-env INCREMENTAL=true rsbuild dev",
"build:rsbuild": "rsbuild build",
"start:turbopack": "next dev --turbo",
"build:turbopack": "next build",
"start:mako": "mako build --mode development --watch --open false",
"build:mako": "mako build --mode production",
"build:rolldown": "rolldown -c ./rolldown.config.mjs"
}
}