-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "Mesto",
"version": "0.0.1",
"description": "Сервис обмена карточками интересных мест.",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production rimraf dist && webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode development --open --watch",
"deploy": "cross-env NODE_ENV=production gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewLapshov/Project-3_Mesto.git"
},
"author": "Andrew Lapshov",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrewLapshov/Project-3_Mesto/issues"
},
"homepage": "https://github.com/andrewLapshov/Project-3_Mesto#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.3",
"css-loader": "^3.3.0",
"cssnano": "^4.1.10",
"file-loader": "^5.0.2",
"gh-pages": "~2.1.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-md5-hash": "0.0.6"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"core-js": "^3.1.4"
}
}