-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "microapps",
"version": "1.0.0",
"description": "How to Microapp",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --history-api-fallback --host localhost --port 8080",
"clean": "rimraf dist/",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack --progress --colors"
},
"author": "Ronald Chen",
"license": "ISC",
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-angularjs-annotate": "0.7.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.4",
"html-webpack-plugin": "2.29.0",
"rimraf": "2.6.1",
"surplus-loader": "0.4.5",
"vue-loader": "13.0.0",
"vue-template-compiler": "2.3.4",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
},
"dependencies": {
"angular": "1.6.5",
"create-react-class": "15.6.0",
"hyperapp": "0.14.0",
"react": "15.6.1",
"react-dom": "15.6.1",
"surplus": "0.4.3",
"vue": "2.3.4"
}
}