-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "mesto-project",
"private": true,
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/index.html",
"scripts": {
"lint": "eslint \"src/components/**/*.js\" && stylelint --config \"./.stylelintrc.json\" \"src/**/*.?css\"",
"lint-fix": "eslint \"src/components/**/*.js\" --fix && stylelint --config \"./.stylelintrc.json\" \"src/**/*.?css\" --fix",
"docs": "jsdoc -c ./.jsdoc.conf.json --verbose",
"build": "webpack --mode production",
"dev": "webpack serve"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jsdoc": "^4.0.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-scss": "^4.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"core-js": "^3.27.1"
},
"browserslist": [
"Firefox >= 100",
"Chrome >= 100",
"Safari >= 16"
]
}