-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "fsd-task-2.1",
"version": "1.0.0",
"description": "Implementation of second task in MetaLamp education program",
"private": true,
"scripts": {
"analyze": "webpack --mode production --config webpack/webpack.analyze.js",
"build": "webpack --mode production --config webpack/webpack.config.js",
"dev-server": "webpack-dev-server --config ./webpack/webpack.dev.js",
"eslint": "eslint --ext .js src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquense/FSD-task-2.1.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Liquense/FSD-task-2.1/issues"
},
"homepage": "https://github.com/Liquense/FSD-task-2.1#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-fsd": "^1.0.1",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^3.0.1",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"sass": "^1.26.11",
"sass-loader": "^7.3.1",
"sass-resources-loader": "^2.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"air-datepicker": "^2.2.3",
"jquery": "^3.5.1",
"jquery-ui": "^1.13.0",
"jquery.maskedinput": "^1.4.1",
"paginationjs": "^2.1.5",
"slick-carousel": "^1.8.1"
}
}