-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
{
"name": "template",
"version": "1.2.0",
"main": "dist/js/all.js",
"scripts": {
"build:dev": "webpack --config=webpack/config.dev.js --hide-modules",
"build:prod": "webpack --config=webpack/config.prod.js --hide-modules",
"lint": "eslint **/*.js",
"prettier": "prettier-eslint --write **/*.js"
},
"lint-staged": {
"linters": {
"*.{js,jsx,css}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"eslint src --fix",
"git add"
]
},
"ignore": [
"**/dist/**",
"**/dev/**",
"**/src/js/util/**",
"**/src/styl/**",
"**/src/js/CustomAccordion.js",
"**/src/js/CustomProgressBar.js",
"**/src/js/Inputs.js",
"**/src/js/MaskedInput.js",
"**/src/js/CustomPopup.js",
"**/src/js/CustomSideMenu.js",
"**/src/js/CustomTabs.js"
]
},
"dependencies": {
"body-scroll-lock": "^2.6.4",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"html-webpack-plugin": "^4.2.0",
"jquery": "^3.2.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"pug-loader": "^2.4.0",
"swiper": "^4.5.0",
"untildify": "^3.0.3",
"vanilla-text-mask": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"autoprefixer-stylus": "^1.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"extract-loader": "^5.1.0",
"file-loader": "^4.2.0",
"husky": "^2.2.0",
"image-webpack-loader": "^6.0.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0",
"prettier-eslint-cli": "^4.7.1",
"pug": "^2.0.4",
"regenerator-runtime": "^0.13.3",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^2.1.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
}
}