-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.59 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bundle-bee",
"version": "1.0.2",
"description": "\"A minimal Electron App to compare bundles\"",
"main": "main_process.js",
"jest": {
"verbose": false,
"testURL": "http://localhost/"
},
"scripts": {
"bundle": "webpack --mode development",
"serve": "electron .",
"test": "jest",
"start": "npm-run-all --parallel bundle serve",
"build": "webpack -p --env production",
"electron": "electron .",
"dev": "webpack-dev-server --mode development",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http: //localhost:3000 \""
},
"author": "Goldberg, Mariano, Modras, Morrell",
"repository": "bundle-bee/bundle-bee",
"license": "WTFPL",
"devDependencies": {
"ajv-keywords": "^3.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"concurrently": "^3.6.1",
"electron": "^9.1.0",
"electron-packager": "^12.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^23.4.2",
"npm-run-all": "^4.1.2",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-traverse": "^6.26.0",
"babylon": "^6.18.0",
"copy-dir": "^0.4.0",
"css-loader": "^0.28.10",
"d3": "^5.5.0",
"file-loader": "^1.1.11",
"gsap": "^2.0.1",
"html-validator": "^3.0.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"parcel": "^1.9.7",
"parcel-bundler": "^1.9.7",
"path": "^0.12.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-modal": "^3.5.1",
"react-redux": "^5.0.7",
"react-tooltip": "^3.6.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-fill-html": "^1.1.0",
"rollup-plugin-image": "^1.0.2",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sass": "^0.9.2",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-uglify": "^4.0.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"upath": "^1.1.0",
"wait-on": "^2.1.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0"
}
}