-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.39 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
{
"name": "restaurantcatalogue",
"version": "1.0.0",
"description": "Ini adalah repository untuk menyimpan kode yang akan digunakan dalam submission dua dalam kelas \"Menjadi Front-End Web Developer Expert\" dari Dicoding",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"build-image": "node sharp.js",
"karma": "karma start",
"e2e": "codeceptjs run --steps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BryanYehuda/SubmissionDuaMFWDE.git"
},
"author": "Bryan Yehuda Mannuel",
"license": "MIT",
"bugs": {
"url": "https://github.com/BryanYehuda/SubmissionDuaMFWDE/issues"
},
"homepage": "https://github.com/BryanYehuda/SubmissionDuaMFWDE#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"codeceptjs": "^2.6.7",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-codeceptjs": "^1.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jasmine": "^4.1.2",
"html-webpack-plugin": "^4.5.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^3.5.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-eslint": "^2.2.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"sharp": "^0.30.5",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-pwa-manifest": "^4.3.0",
"whatwg-fetch": "^3.2.0"
},
"dependencies": {
"css-loader": "^3.6.0",
"idb": "^6.1.2",
"lazysizes": "^5.3.2",
"puppeteer": "^10.1.0",
"regenerator-runtime": "^0.13.7",
"serviceworker-webpack-plugin": "^1.0.1",
"style-loader": "^1.2.1"
}
}