-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "mesto",
"version": "1.0.0",
"description": "Учебная работа выполненная с применением основных технологий HTML и CSS: методологии \r БЭМ, flexbox, grid, медиазапросов и т.д.. Файловая структура так же построена по БЭМ. Сайт адаптивен.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack serve",
"deploy": "gh-pages -d dist",
"predeploy": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PavelGorin/mesto.git"
},
"author": "Pavel Gorin",
"license": "ISC",
"bugs": {
"url": "https://github.com/PavelGorin/mesto/issues"
},
"homepage": "https://github.com/PavelGorin/mesto#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"postcss-loader": "^4.1.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.8.1"
}
}