-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.12 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
{
"name": "demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-server": "NODE_ENV=development ./node_modules/.bin/webpack -w --config webpack.server.js",
"start-server": "nodemon server/build/app.js",
"build-client": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --config webpack.pro.config.js",
"start-client": "./node_modules/.bin/webpack-dev-server --hot --open --config webpack.dev.config.js",
"build-dll": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --config webpack.dll.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiannengyu/docker-test.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tiannengyu/docker-test/issues"
},
"homepage": "https://github.com/tiannengyu/docker-test#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^5.2.1",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"express": "^4.16.4",
"happypack": "^5.0.1",
"html-webpack-plugin": "^4.0.0-beta.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.5.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"lodash": "^4.17.11",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1"
}
}