-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mdb-webpack-starter",
"version": "3.0.0",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack/webpack.config.dev.js --open",
"startMDB": "cross-env NODE_ENV=development webpack-dev-server --config webpack/mdb/webpack.config.mdb.dev.js --open",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"buildMDB": "cross-env NODE_ENV=production webpack --config webpack/mdb/webpack.config.mdb.prod.js --colors",
"getMDBsrc": "node getMDBsrc",
"test": "jest",
"lint": "lint-staged && pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
],
"src/**/*.css": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mdbootstrap/mdb-webpack-starter"
},
"keywords": [
"material design",
"bootstrap",
"webpack"
],
"author": "M.Smolenski <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.8.3",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^5.1.0",
"fs-extra": "^9.0.1",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.17.2",
"webpack": "^5.72.0",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^4.2.2",
"webpack-remove-empty-scripts": "^1.0.1"
},
"dependencies": {
"@popperjs/core": "^2.6.0",
"babel-loader": "^8.2.5",
"chart.js": "^3.7.1",
"chartjs-plugin-datalabels": "^2.0.0",
"deepmerge": "^4.2.2",
"detect-autofill": "^1.1.3",
"mdb-ui-kit": "^4.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"perfect-scrollbar": "^1.5.0",
"popper.js": "^1.16.1",
"portfinder-sync": "^0.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^4.10.0"
}
}