-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "restaurant-apps",
"version": "1.0.0",
"main": "index.html",
"scripts": {
"start-dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"serve": "http-server dist",
"lint": "eslint src --fix",
"test": "jest --runInBand",
"e2e": "npx codeceptjs run --steps",
"test:watch": "jest --watchAll",
"build:sass": "sass ./src/styles/sass/main.scss ./src/styles/main.css",
"watch:sass": "sass --watch ./src/styles/sass/main.scss ./src/styles/main.css"
},
"keywords": [],
"author": "Ivan Wahyu Nugroho",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.6.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.3",
"@webcomponents/webcomponentsjs": "^2.8.0",
"babel-jest": "^29.6.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"codeceptjs": "^3.6.10",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^9.16.0",
"eslint-config-dicodingacademy": "^0.9.4",
"fake-indexeddb": "^4.0.2",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.5.3",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.1",
"lazysizes": "^5.3.2",
"playwright": "^1.49.1",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^3.3.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"webpack-pwa-manifest": "^4.3.0",
"whatwg-fetch": "^3.6.20",
"workbox-webpack-plugin": "^7.3.0"
},
"dependencies": {
"aos": "^3.0.0-beta.6",
"dotenv": "^16.4.7",
"idb": "^8.0.0",
"regenerator-runtime": "^0.14.0",
"sweetalert2": "^11.14.5",
"workbox-window": "^7.3.0"
},
"directories": {
"test": "tests"
},
"description": ""
}