-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "statistical-type-inference",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"serve": "http-server",
"webpack": "webpack",
"parcel": "parcel build index-parcel.html --no-source-maps --out-dir bundledOutputs",
"rollup": "rollup -c rollup.config.browser.js",
"fastpack": "fpack build -o bundledOutputs -n fastpack.js --dev --no-cache",
"test": "rm -rf .cache && time node_modules/fastpack/fpack.exe build -o bundledOutputs -n fastpack.js --dev --no-cache && time yarn webpack && time yarn parcel && time yarn rollup && wc bundledOutputs/*"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-flow": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"babel-loader": "^8.0.0-beta.4",
"bs-platform": "^6.2.0",
"fastpack": "^0.9.1",
"parcel-bundler": "^1.12.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.1.2"
}
}