-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
69 lines (69 loc) · 2.24 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": "@farmfe-examples/react",
"version": "0.0.0",
"scripts": {
"benchmark": "node benchmark.mjs",
"start:farm": "farm start",
"build:farm": "farm build",
"start:vite": "vite",
"build:vite": "vite build",
"start:vite:babel": "vite -c vite.babel.config.ts",
"build:vite:babel": "vite build -c vite.babel.config.ts",
"start:rsbuild": "rsbuild dev",
"build:rsbuild": "rsbuild build",
"start:webpack": "webpack serve --mode development",
"build:webpack": "webpack build --mode production",
"start:webpack:babel": "webpack serve -c webpack.babel.config.js --mode development",
"build:webpack:babel": "webpack build -c webpack.babel.config.js --mode production",
"start:mako": "mako build --mode development --watch --open false",
"build:mako": "mako build --mode production",
"start:rspack": "rspack serve",
"build:rspack": "rspack build",
"start:turbopack": "next dev --turbo",
"build:turbopack": "next build"
},
"dependencies": {
"clsx": "^1.2.1",
"playwright": "^1.36.0",
"puppeteer": "^21.5.2",
"react": "18",
"react-dom": "18",
"strip-ansi": "^7.1.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.3.22",
"@farmfe/plugin-react": "^1.2.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@rsbuild/core": "^1.0.5",
"@rsbuild/plugin-react": "^1.0.2",
"@rspack/cli": "^1.0.5",
"@rspack/core": "^1.0.5",
"@umijs/mako": "^0.7.2",
"@rspack/plugin-react-refresh": "^1.0.0",
"@swc/core": "^1.6.5",
"@types/react": "18",
"@types/react-dom": "18",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"babel-loader": "^9.1.2",
"core-js": "^3.31.0",
"css-loader": "^6.7.3",
"esbuild": "^0.18.11",
"html-webpack-plugin": "^5.5.0",
"next": "14.0.3",
"parcel": "^2.9.3",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.6",
"vite": "6.0.0-alpha.11",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}