-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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": "parceljs-vue-bulma",
"version": "1.0.0",
"description": "A simple boilerplate for front-end development using Vue.js and Bulma",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"page-create": "./scripts/create_page.sh",
"subcomponent-create": "./scripts/create_subcomponent.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mfk-smart/parceljs-vuejs-bulma.git"
},
"keywords": [
"vue.js",
"parcel",
"bulma",
"html5"
],
"author": "M. Fatih KILIC",
"license": "MIT",
"bugs": {
"url": "https://github.com/mfk-smart/parceljs-vuejs-bulma/issues"
},
"homepage": "https://github.com/mfk-smart/parceljs-vuejs-bulma#readme",
"dependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bulma": "^0.7.2",
"vue": "^2.5.17",
"vue-hot-reload-api": "^2.3.1",
"vue-i18n": "^8.3.1",
"vue-moment": "^4.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@vue/component-compiler-utils": "^2.3.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"node-sass": "^4.10.0",
"parcel": "^1.10.3",
"prettier": "1.14.0",
"pug": "^2.0.3",
"vue-template-compiler": "^2.5.17"
}
}