-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1018 Bytes
/
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
{
"name": "restaurant",
"version": "1.0.0",
"description": "Pure JS pet app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server",
"build:prod": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.prod.js",
"lint": "eslint . --fix"
},
"author": "Gushat Khabibullina",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.33.2",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"html-webpack-plugin": "^4.5.2",
"webpack": "4.40.2",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.1"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}