forked from babageedhey/frontend-docker-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.68 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
{
"name": "frontend-example-docker",
"version": "1.0.0",
"repository": "https://github.com/docker-hy/frontend-example-docker",
"description": "Example frontend project for docker course",
"main": "index.js",
"scripts": {
"start": "webpack --mode production && serve -s -l 5000 dist",
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development --hot",
"lint": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"stats": "webpack --mode production --json --optimize-minimize > stats.json"
},
"author": "Jami Kousa",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.1",
"babel-loader": "^8.0.6",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"mini-css-extract-plugin": "^0.4.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"package.json": "^2.0.1",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.83.0",
"serve": "^10.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}