forked from andrewdacenko/web-components-angular-react
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.73 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
{
"name": "web-component",
"version": "1.0.0",
"description": "Three micro frontends built with different technologies (React v15, React v0.14, and Angular)",
"main": "index.js",
"scripts": {
"clean:dist": "rimraf dist",
"start": "run-s clean:dist build:microfrontends start:dev",
"start:dev": "webpack-dev-server --env.development --progress --open",
"start:dist": "node server.js",
"build": "run-s clean:dist build:prod build:microfrontends",
"build:prod": "webpack --env.production",
"build:microfrontends": "run-p build:microfrontend1 build:microfrontend2 build:microfrontend3",
"build:microfrontend1": "cd microfrontend1 && webpack --config webpack.prod.js",
"build:microfrontend2": "cd microfrontend2 && webpack --config webpack.prod.js",
"build:microfrontend3": "cd microfrontend3 && webpack --config webpack.prod.js",
"deploy": "git push origin :gh-pages && git subtree push --prefix dist origin gh-pages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.32",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.32",
"@babel/plugin-transform-runtime": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/preset-react": "^7.0.0-beta.32",
"@babel/runtime": "^7.0.0-beta.32",
"babel-loader": "^8.0.0-beta.0",
"express": "^4.16.3",
"html-webpack-plugin": "^2.30.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.2"
}
}