-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 928 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
34
35
36
37
38
{
"name": "big-trip",
"version": "20.0.0",
"private": true,
"description": "Проект «Большое путешествие» от HTML Academy",
"browserslist": [
"last 2 versions",
"not dead",
"not ie <= 11",
"not op_mini all",
"not < 0.25%"
],
"scripts": {
"lint": "eslint src/",
"build": "webpack --mode production",
"start": "webpack serve --mode development --open"
},
"devDependencies": {
"eslint": "8.38.0",
"eslint-config-htmlacademy": "9.0.0"
},
"engines": {
"node": "18"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"dayjs": "^1.11.13",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.2.0"
}
}