-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
84 lines (84 loc) · 2.41 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
83
84
{
"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 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:villeristi/vue.js-starter-template.git"
},
"config": {
"port": 3000
},
"scripts": {
"start": "webpack-dashboard -c magenta -t 'Vue.js-Starter-Template' -- webpack-dev-server --config webpack/development.js --progress --hot",
"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.3.1",
"font-awesome": "^4.7.0",
"vee-validate": "^2.0.0-rc.5",
"vue": "^2.3.4",
"vue-router": "^2.5.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.1.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.26.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.2.1",
"imports-loader": "^0.7.1",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^1.3.2",
"require-dir": "^0.3.2",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.6.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.2.1",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^0.14.0",
"webpack-notifier": "^1.5.0"
},
"babel": {
"presets": [
"es2015"
]
}
}