-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "restaurant-landing-page",
"homepage": "https://davidcortesa.github.io/restaurant/",
"version": "1.0.0",
"description": "Restaurant landing page",
"main": "index.js",
"repository": {
"url": "git+https://github.com/DavidCortesA/restaurant.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"start": "webpack serve --config webpack.config.js --env env=dev --open",
"predeploy": "npm run build:dev",
"deploy": "gh-pages -d dist"
},
"author": "David Cortez",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^4.0.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.3",
"prettier": "^2.8.3",
"react-icons": "^4.8.0",
"sass": "^1.59.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.2",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}