-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
33 lines (33 loc) · 964 Bytes
/
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
{
"name": "vueinterface",
"description": "Repo for my course on building a Vue.js interface",
"version": "1.0.0",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --content-base ./app",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.19.3",
"vue": "^2.3.3"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^4.4.1",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"postcss-loader": "^2.0.6",
"style-loader": "^0.18.2",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}