-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
29 lines (29 loc) · 1.07 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
{
"name": "bundler-performance-benchmark",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-preact": "^1.1.0",
"lodash-es": "^4.17.4",
"parcel-bundler": "^1.2.1",
"preact": "^8.2.7",
"preact-compat": "^3.17.0",
"webpack": "webpack/webpack#next"
},
"scripts": {
"build:webpack": "webpack --mode production --env.example single-entry-med-graph-js-only",
"build:parcel": "parcel build ./examples/single-entry-med-graph-js-only/src/index.js -d ./examples/single-entry-med-graph-js-only/dist",
"build:webpack1": "webpack --mode production --env.example parcel-recipies-preact",
"build:parcel1": "parcel build ./examples/parcel-recipies-preact/src -d ./examples/parcel-recipies-preact/dist",
"bench:1": "node ./examples/single-entry-med-graph-js-only/run.js",
"bench:2": "node ./examples/parcel-recipies-preact/run.js"
},
"devDependencies": {
"benchmark": "^2.1.4",
"file-size": "^1.0.0",
"webpack-cli": "^1.5.3"
}
}