-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1022 Bytes
/
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
{
"name": "movie_db",
"version": "1.0.0",
"description": "Simple & lightweight web app Movie DB",
"main": "index.js",
"scripts": {
"start-dev": "webpack serve --config webpack.dev.js",
"http": "http-server ./dist/",
"build": "webpack --config webpack.prod.js",
"lint": "eslint ./src/index.js",
"lint-fix": "eslint ./src/index.js --fix"
},
"keywords": [
"movie",
"movie_db"
],
"author": "Hawari Muflih Munte <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap-icons": "^1.10.3",
"eslint": "^8.31.0",
"http-server": "^14.1.1",
"regenerator-runtime": "^0.13.11",
"uikit": "^3.15.20"
}
}