-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"license": "GPL-3.0",
"dependencies": {
"vue": "2.5.13"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "0.1.18",
"css-loader": "0.28.9",
"eslint": "4.19.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.6",
"html-loader": "0.5.5",
"htmlhint": "0.9.13",
"less": "3.10.3",
"less-loader": "5.0.0",
"less-plugin-autoprefix": "2.0.0",
"less-plugin-clean-css": "1.5.1",
"prettier": "1.19.1",
"style-loader": "0.20.1",
"stylelint": "8.4.0",
"stylelint-config-standard": "18.0.0",
"webpack": "3.11.0"
},
"scripts": {
"build": "webpack --config=assets/webpack.config.js",
"dev": "webpack --config=assets/webpack.config.js -w"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"es6": true,
"browser": true
}
},
"prettier": {
"singleQuote": true
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"mailur": {
"themes": [
"base",
"indigo",
"mint",
"solarized"
]
}
}