-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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",
"version": "1.0.0",
"description": "Third frontend project",
"private": "true",
"main": "./src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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/vlad1slove1/frontend-project-11.git"
},
"keywords": [
"javascript",
"webpack",
"bootstrap",
"hexlet-projects"
],
"author": "Vladislav Kishchenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/vlad1slove1/frontend-project-11/issues"
},
"homepage": "https://github.com/vlad1slove1/frontend-project-11#readme",
"devDependencies": {
"@webpack-cli/generators": "^3.0.1",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"exports-loader": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"imports-loader": "^4.0.1",
"mini-css-extract-plugin": "^2.7.2",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"autoprefixer": "^10.4.13",
"axios": "^1.2.1",
"bootstrap": "^5.2.2",
"i18next": "^22.0.6",
"lodash": "^4.17.21",
"on-change": "^4.0.1",
"yup": "^0.32.11"
}
}