-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 895 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 895 Bytes
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
{
"name": "dicoding-submission",
"version": "1.0.0",
"description": "",
"main": ".src/index.js",
"scripts": {
"build": "npm run clean && webpack --config webpack.prod.js",
"start-dev": "webpack-dev-server --config webpack.dev.js --open",
"clean": "rimraf ./dist/*"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.1",
"html-webpack-plugin": "^4.3.0",
"inline-source-map": "^0.6.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"dependencies": {
"bootstrap": "^4.5.2"
}
}