-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "@hexlet/code",
"type": "module",
"version": "1.0.0",
"description": "3rd frontend project (rss reader)",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development",
"prebuild": "npm ci",
"build": "webpack --mode production --output-path ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanla0/frontend-project-lvl3.git"
},
"author": "johanla0",
"license": "ISC",
"bugs": {
"url": "https://github.com/johanla0/frontend-project-lvl3/issues"
},
"main": "src/index.js",
"homepage": "https://github.com/johanla0/frontend-project-lvl3#readme",
"devDependencies": {
"autoprefixer": "^10.2.5",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"i18n-webpack-plugin": "^1.0.0",
"postcss": "^8.2.8",
"postcss-loader": "^5.2.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.26.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"yaml-loader": "^0.6.0"
},
"dependencies": {
"@popperjs/core": "^2.9.1",
"axios": "^0.21.1",
"bootstrap": "^5.0.0-beta2",
"i18next": "^19.9.2",
"i18next-browser-languagedetector": "^6.1.0",
"lodash": "^4.17.21",
"on-change": "^2.2.3",
"yup": "^0.32.9"
}
}