-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "vue-education",
"version": "1.0.0",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production webpack --no-progress --hide-modules --config=webpack.config.js"
},
"dependencies": {
"@babel/polyfill": "~7.2",
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "~7.2",
"@babel/plugin-proposal-class-properties": "~7.3",
"@babel/plugin-proposal-decorators": "~7.3",
"@babel/plugin-proposal-json-strings": "~7.2",
"@babel/plugin-syntax-dynamic-import": "~7.2",
"@babel/plugin-syntax-import-meta": "~7.2",
"@babel/preset-env": "~7.3",
"babel-loader": "~8.0",
"cross-env": "~5.2",
"css-loader": "~0.28",
"sass": "^1.27.0",
"sass-loader": "^7.3.1",
"vue-loader": "^15.9.3",
"vue-style-loader": "~4.1",
"vue-template-compiler": "^2.6.12",
"webpack": "~4.29",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-hot-middleware": "~2.24",
"webpack-merge": "~4.2"
}
}