-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (40 loc) · 1.12 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
{
"name": "restaurant-apps",
"version": "1.0.0",
"description": "",
"main": "src/scripts/index.js",
"scripts": {
"start-dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"serve": "http-server dist",
"build-serve": "npm run build && npm run serve"
},
"keywords": [],
"author": "Muhammad Daffa'I Rafi Prasetyo daffarafip24@gmail.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"prettier": "2.8.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"idb": "^7.1.1",
"regenerator-runtime": "^0.13.10"
}
}