-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.56 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.56 KB
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
83
84
85
86
87
88
89
{
"name": "vue.js-starter-template",
"version": "0.10.0",
"description": "A starter for Vue.js-projects",
"keywords": [
"vue.js",
"vue.js router",
"axios",
"webpack 2",
"animate.css"
],
"author": "Wille Ristimäki <villeristimaki@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:villeristi/vue.js-starter-template.git"
},
"config": {
"port": 4000
},
"scripts": {
"start": "webpack-dashboard -c magenta -t 'Vue.js-Starter-Template' -- webpack-dev-server --config webpack/development.js --progress --hot --port 4000",
"build": "webpack --config webpack/production.js -p --progress",
"lint:js": "eslint src"
},
"dependencies": {
"axios": "^0.16.2",
"bootstrap": "4.0.0-alpha.6",
"css-hot-loader": "^1.4.2",
"font-awesome": "^4.7.0",
"fs": "0.0.1-security",
"socket.io-client": "^2.1.1",
"tls": "0.0.1",
"vee-validate": "^2.1.2",
"vue": "^2.5.17",
"vue-router": "^2.8.1",
"vue-socket.io": "^2.1.1-b"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^1.1.3",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.11.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.26.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.6.1",
"imports-loader": "^0.7.1",
"json-loader": "^0.5.7",
"minimist": "^1.2.0",
"node-sass": "^4.9.4",
"optimize-css-assets-webpack-plugin": "^1.3.2",
"require-dir": "^0.3.2",
"resolve-url-loader": "^2.3.1",
"sass-loader": "^6.0.7",
"source-map-loader": "^0.2.4",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"vue-loader": "^13.7.3",
"vue-template-compiler": "^2.5.17",
"webpack": "^3.12.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "^2.11.3",
"webpack-merge": "^0.14.0",
"webpack-notifier": "^1.7.0"
},
"babel": {
"presets": [
"es2015"
]
}
}