-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "@hexlet/code",
"type": "module",
"version": "1.0.0",
"description": "RSS aggregator",
"main": "main/init.js",
"scripts": {
"lint": "npx eslint .",
"lint-fix": "npx eslint --fix .",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-gunderin/frontend-project-lvl3.git"
},
"author": "Andrei Gunderin",
"license": "ISC",
"bugs": {
"url": "https://github.com/a-gunderin/frontend-project-lvl3/issues"
},
"homepage": "https://github.com/a-gunderin/frontend-project-lvl3#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@jest/globals": "^27.1.1",
"@webpack-cli/generators": "^2.3.0",
"@webpack-cli/init": "^1.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.1",
"jest-circus": "^27.1.1",
"jest-cli": "^27.1.1",
"style-loader": "^3.2.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
},
"dependencies": {
"axios": "^0.21.4",
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.1",
"i18next": "^21.0.1",
"on-change": "^4.0.0",
"yup": "^0.32.9"
}
}