-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
82 lines (82 loc) · 2.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": {
"email": "[email protected]",
"name": "Kevin Peters",
"url": "https://www.kevinpeters.net/"
},
"browserslist": ["> 1%", "last 2 versions", "not ie <= 8"],
"bugs": {
"url": "https://github.com/igeligel/vuex-simple-structure/issues"
},
"dependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"description":
"A Vue.js project showcasing Feature scoped Vuex modules to have a better organization of business logic code inside Vuex modules based on Large-scale Vuex application structures",
"devDependencies": {
"autoprefixer": "^9.1.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.0",
"node-sass": "^4.9.3",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^3.0.0",
"portfinder": "^1.0.17",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"semver": "^5.5.1",
"shelljs": "^0.8.2",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.23.0",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"homepage": "https://vuex-feature-scoped-structure.netlify.com/",
"keywords": ["vuex", "feature", "large", "scale", "vuejs", "vue", "example"],
"license": "MIT",
"name": "vuex-feature-scoped-structure",
"repository": {
"type": "git",
"url": "https://github.com/igeligel/vuex-feature-scoped-structure"
},
"scripts": {
"build": "node build/build.js",
"dev": "node build/dev-server.js",
"start": "npm run dev"
},
"version": "1.0.0"
}