-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.02 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
{
"name": "getpizza2020.herokuapp.com",
"version": "1.0.0",
"main": "webapp/app.js",
"repository": "https://github.com/KiazimKhutaba/pizza-app.git",
"author": "Kiazim Khutaba <github.com/KiazimKhutaba>",
"license": "MIT",
"scripts": {
"dev": "webpack --config frontapp/webpack.dev.js",
"start": "webpack-dev-server --open --config frontapp/webpack.dev.js",
"build": "webpack --config frontapp/webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.2",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.10.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.2"
}
}