-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
56
57
58
59
60
61
62
{
"name": "bvv-frontend-project-lvl3",
"version": "0.0.1",
"description": "Hexlet study project \"RSS aggregator\"",
"main": "src/index.js",
"scripts": {
"testWatch": "jest --watch",
"test": "jest",
"dev-server": "npx webpack-dev-server --mode development --open",
"dev": "npm-run-all --parallel testWatch dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vbuzivskoy/frontend-project-lvl3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vbuzivskoy/frontend-project-lvl3/issues"
},
"homepage": "https://github.com/vbuzivskoy/frontend-project-lvl3#readme",
"dependencies": {
"@babel/polyfill": "^7.10.1",
"axios": "^0.21.1",
"bootstrap": "^4.5.0",
"i18next": "^19.4.5",
"jquery": "^3.5.1",
"lodash": "^4.17.19",
"on-change": "^2.0.1",
"popper.js": "^1.16.1",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@testing-library/dom": "^7.18.1",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/user-event": "^12.0.11",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-testing-library": "^3.3.1",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"purgecss-webpack-plugin": "^2.2.0",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}