-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "restaurant-apps",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start-dev": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"serve": "http-server dist --port 9022",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint ./src --fix",
"build-image": "node sharp.js",
"e2e": "codeceptjs run --steps"
},
"keywords": [],
"author": "your_name <your.email@domain.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@eslint/js": "^9.2.0",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"babel-jest": "^29.6.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"codeceptjs": "^3.6.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cssnano": "^7.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"fake-indexeddb": "^4.0.2",
"globals": "^15.2.0",
"html-webpack-plugin": "^5.5.3",
"http-server": "^14.1.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"mini-css-extract-plugin": "^2.9.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"playwright": "^1.44.1",
"postcss": "^8.4.38",
"sharp": "^0.33.4",
"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",
"whatwg-fetch": "^3.6.2",
"workbox-webpack-plugin": "^7.1.0"
},
"dependencies": {
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"idb": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"lazysizes": "^5.3.2",
"regenerator-runtime": "^0.14.0",
"workbox-window": "^7.1.0"
},
"directories": {
"test": "tests"
},
"description": ""
}