-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
{
"name": "project-name",
"version": "1.0.0",
"description": "new Document",
"author": "",
"license": "MIT",
"service": {
"port": 7788,
"ip": "0.0.0.0"
},
"scripts": {
"dev": "NODE_ENV=dev node_modules/.bin/webpack-dev-server --config config/webpack.dev.config.js --hot --progress",
"build": "NODE_ENV=production node_modules/.bin/webpack --config config/webpack.pro.config.js -p --progress --hide-modules"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"less-loader": "^4.0.5",
"node-sass": "^4.7.1",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"miox": "^5.1.13",
"miox-css": "^5.1.15",
"miox-react": "^5.1.13",
"miox-router": "^5.1.13",
"react": "^16.1.1",
"react-dom": "^16.1.1"
}
}