-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.58 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
{
"name": "dayoff",
"author": "Anton Vakhrushev",
"license": "",
"version": "1.0.0",
"description": "dayoff",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/runtime": "^7.8.4",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.0",
"core-js": "^3.6.4",
"css-loader": "^2.1.1",
"glob": "^7.1.6",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"qs": "^6.9.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"underscore": "^1.9.2",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-router": "^3.1.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "webpack --config webpack.config.js --progress",
"watch": "webpack --config webpack.config.js --watch --progress",
"build-prod": "webpack --config webpack.config.js --env.production",
"format-webpack": "prettier --single-quote --trailing-comma es5 --write \"./webpack.config.js\"",
"format-js": "prettier --single-quote --trailing-comma es5 --write \"./assets/**/*.js\"",
"format-vue": "prettier --single-quote --trailing-comma es5 --write \"./assets/**/*.vue\"",
"format-style": "prettier --single-quote --write \"assets/**/*.scss\"",
"format-md": "prettier --print-width=80 --parser=markdown --write \"README.md\""
},
"dependencies": {},
"browserslist": [
"defaults"
]
}