-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "restaurant-apps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack server --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"postbuild": "node sharp.js",
"analyze": "webpack --config ./webpack/webpack.analyze.js",
"start": "http-server ./dist --port 5000 --silent",
"lint": "eslint .",
"test": "karma start",
"e2e": "yarn run codeceptjs run --steps"
},
"keywords": [],
"author": "Andri Junaedi <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.1",
"@codeceptjs/configure": "^0.6.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"codeceptjs": "^3.0.7",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"html-webpack-plugin": "^5.3.1",
"http-server": "^0.12.3",
"husky": "^6.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-webpack-plugin": "^2.4.2",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^3.5.0",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "^5.0.0",
"postcss": "^8.2.14",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"preload-webpack-plugin-stzhang": "^1.0.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"puppeteer": "^10.1.0",
"sass-loader": "^11.0.1",
"sharp": "^0.28.3",
"style-loader": "^1.2.1",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.0.9",
"webpack-pwa-manifest": "^4.3.0",
"webpackbar": "^5.0.0-3",
"whatwg-fetch": "^3.2.0",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"idb": "^6.1.2",
"jpegtran-bin": "^5.0.2",
"lazysizes": "^5.3.2",
"nprogress": "^0.2.0",
"regenerator-runtime": "^0.13.5",
"sweetalert": "^2.1.2",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-window": "^6.1.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}