-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "vue-boilerplate",
"version": "1.0.0",
"description": "vue boilerplate",
"main": "src/index.js",
"scripts": {
"build": "rm -rf dist && dool build",
"lint": "eslint --fix --ext .js,.vue src/",
"dev": "dool server"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/vue-boilerplate.git"
},
"keywords": [
"vue",
"vuex",
"vue-router",
"elementUI"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/vue-boilerplate/issues"
},
"homepage": "https://github.com/d-band/vue-boilerplate#readme",
"dependencies": {
"@babel/runtime": "^7.1.2",
"axios": "^0.18.0",
"cd-themify-icons": "^0.0.1",
"element-ui": "^2.4.9",
"qs": "^6.5.2",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"@babel/plugin-transform-runtime": "^7.1.0",
"dool": "^4.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-vue": "^4.7.1",
"json-server": "^0.14.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.10.0",
"pre-commit": "^1.2.2",
"sass-loader": "^7.1.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17"
}
}