-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "@hexlet/code",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"type": "module",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"start": "webpack serve",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "Elena",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"html-webpack-plugin": "^5.6.0",
"postcss-loader": "^8.1.1",
"sass": "^1.77.5",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"https-browserify": "^1.0.0",
"i18next": "^23.11.5",
"lodash": "^4.17.21",
"on-change": "^5.0.1",
"process": "^0.11.10",
"rss-parser": "^3.13.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12",
"url": "^0.11.3",
"uuid": "^10.0.0",
"yup": "^1.4.0"
}
}