-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.55 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
57
{
"name": "vue-mvc",
"version": "1.0.0",
"description": "An opinionated framework for Vue",
"main": "index.js",
"scripts": {
"test": "mocha",
"dev": "NODE_ENV=development webpack-dev-server --host 0.0.0.0 --port 8000 --history-api-fallback --config ./config/webpack.js",
"build": "NODE_ENV=production webpack --config ./config/webpack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jordanskomer/vue-mvc.git"
},
"keywords": [
"Vuejs",
"Vue",
"Javascript"
],
"author": "Evan Agee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jordanskomer/vue-mvc/issues"
},
"homepage": "https://github.com/jordanskomer/vue-mvc#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-loader": "^7.1.2",
"babel-plugin-wildcard": "^2.1.2",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"the-tailor": "^1.2.1",
"url-loader": "^0.6.2",
"vue-loader": "^13.3.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"vuex": "^3.0.0",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.2"
},
"dependencies": {
"vue": "^2.5.2"
}
}