-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
{
"name": "frontend-intership-toxin",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --mode development",
"start": "cross-env NODE_ENV=development webpack serve",
"build": "webpack --mode production",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"stylelint": "stylelint \"src/**/*.scss\"",
"stylelint:fix": "stylelint \"src/**/*.scss\" --fix"
},
"browserslist": [
">1%",
"last 3 version"
],
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-fsd": "^1.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-pug": "^1.2.4",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.1",
"postcss": "^8.4.4",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.4.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass-loader": "^12.1.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"air-datepicker": "^2.2.3",
"inputmask": "^5.0.6",
"jquery": "^3.6.0",
"jquery-ui-slider": "^1.12.1",
"paginationjs": "^2.1.5",
"slick-carousel": "^1.8.1"
}
}