-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
{
"name": "@hexlet/code",
"version": "0.0.1",
"description": "Hexlet third education project | frontend.",
"type": "module",
"scripts": {
"dev": "webpack serve",
"build": "export NODE_ENV=development && webpack --mode=development",
"prod": "export NODE_ENV=production && webpack --mode=production",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"main": "./src/application.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Sinoptik93/frontend-project-lvl3.git"
},
"author": "Chepukhin S.V.",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sinoptik93/frontend-project-lvl3/issues"
},
"homepage": "https://github.com/Sinoptik93/frontend-project-lvl3#readme",
"dependencies": {
"@popperjs/core": "^2.11.2",
"axios": "^0.26.1",
"bootstrap": "^5.1.3",
"i18next": "^21.6.14",
"lodash": "^4.17.21",
"normalizr": "^3.6.2",
"npm-check-updates": "^11.8.5",
"on-change": "^4.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.1.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"debug": "^4.3.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"jest-cli": "^27.1.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.8",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.4"
}
}