-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "2020_2_friends",
"version": "1.0.0",
"description": "## Репозиторий фронтенда",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.12.5",
"cli": "^1.0.1",
"express": "^4.17.1",
"path": "^0.12.7",
"ymaps": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"handlebars-loader": "^1.7.1",
"handlebars-webpack-plugin": "^2.2.1",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"image-minimizer-webpack-plugin": "^2.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.1",
"imagemin-webp": "^6.0.0",
"mini-css-extract-plugin": "^1.3.3",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-prod": "webpack --mode production",
"build-dev": "webpack --mode development",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontend-park-mail-ru/2020_2_Friends.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frontend-park-mail-ru/2020_2_Friends/issues"
},
"homepage": "https://github.com/frontend-park-mail-ru/2020_2_Friends#readme",
"husky": {
"hooks": {
"pre-commit": "npx eslint ./"
}
}
}