-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"type": "module",
"name": "datacovidapp",
"version": "1.0.0",
"description": "DataCovidApp",
"main": "app.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start-dev": "webpack serve --config webpack.dev.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"author": "Iqbal Maulana",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"html-loader": "^2.1.2",
"style-loader": "^3.2.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"axios": "^0.21.1",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"html-webpack-plugin": "^5.3.2",
"http-server": "^13.0.1",
"mapbox": "^1.0.0-beta10",
"mapbox-gl": "^2.4.1",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.51.1",
"webpack-merge": "^5.8.0"
}
}