-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.61 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
{
"name": "bundler-benchmarking",
"version": "1.0.0",
"browserslist": "> 5%",
"repository": "https://github.com/j0sh77/bundler-benchmarking",
"author": "Josh <[email protected]>",
"license": "MIT",
"dependencies": {
"@swc/helpers": "^0.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-react": "^7.16.7",
"@parcel/config-default": "^2.3.2",
"@parcel/optimizer-css": "^2.3.2",
"@parcel/transformer-css-experimental": "^2.3.2",
"@parcel/transformer-typescript-tsc": "^2.3.2",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@swc/core": "^1.2.154",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"cli-progress": "^3.10.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.3",
"esbuild": "^0.14.25",
"esbuild-loader": "^2.18.0",
"express": "^4.17.3",
"mini-css-extract-plugin": "^2.6.0",
"parcel": "^2.3.2",
"rollup": "^2.70.0",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"ts-loader": "^9.2.7",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"yargs": "^17.3.1"
},
"scripts": {
"clean": "rm -rf dist; rm -rf .parcel-cache",
"serve": "node scripts/serve.js",
"test": "node scripts/test.js",
"generate": "node scripts/generate.js",
"build:webpack": "webpack --config webpack.config.js",
"build:webpack-swc": "webpack --config webpack-swc.config.js",
"build:webpack-esbuild": "webpack --config webpack-esbuild.config.js",
"build:parcel": "parcel build src/index.parcel.html --config ./default.config.parcelrc --no-scope-hoist && mv dist/index.parcel.html dist/index.html",
"build:parcel-css": "parcel build src/index.parcel.html --config ./css.config.parcelrc --no-scope-hoist && mv dist/index.parcel.html dist/index.html",
"build:rollup": "rollup --format iife -c rollup.config.js",
"build:rollup-terser": "rollup --format iife -c rollup-terser.config.js",
"build:esbuild": "esbuild src/index.tsx --bundle --minify --outfile=dist/app.js --target=chrome58 --define:process.env.BUNDLER_NAME='\"esbuild\"'",
"build:vite": "vite build --config vite.config.js && mv dist/src/index.vite.html dist/index.html"
}
}