-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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": "webpackvue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack --mode development --watch",
"watch": "webpack-dev-server --mode development",
"start": "npm run build -- --mode production"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"babel-loader": "^8",
"clean-webpack-plugin": "^3",
"css-loader": "^4",
"eslint": "^7",
"eslint-config-airbnb": "^18",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-vue": "^6",
"html-webpack-plugin": "^4",
"mini-css-extract-plugin": "^0",
"rimraf": "^3",
"sass-loader": "^9",
"style-loader": "^1",
"vue-loader": "^15",
"vue-style-loader": "^4",
"vue-template-compiler": "^2",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
},
"dependencies": {
"file-loader": "^6",
"font-awesome": "^4.7.0",
"node-sass": "^4",
"sass": "^1",
"vue": "^2",
"vue-router": "^3.4.3"
}
}