forked from johndatserakis/koa-vue-notes-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 1.81 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 1.81 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
{
"name": "koa-vue-notes-web",
"version": "2.0.1",
"description": "A SPA using Koa as the backend and Vue as the frontend.",
"author": "John Datserakis <johndatserakis@gmail.com>",
"private": true,
"scripts": {
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit --verbose",
"lint": "vue-cli-service lint",
"watch": "vue-cli-service serve --open"
},
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.1.1",
"bootstrap-vue": "^2.0.0-rc.11",
"es6-promise": "^4.2.2",
"jwt-decode": "^2.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"vue": "^2.5.16",
"vue-progressbar": "^0.7.2",
"vue-router": "^3.0.1",
"vue-toasted": "^1.1.24",
"vuelidate": "^0.6.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.15",
"@vue/cli-plugin-eslint": "^3.0.0-beta.15",
"@vue/cli-plugin-unit-jest": "^3.0.0-beta.15",
"@vue/cli-service": "^3.0.0-beta.15",
"@vue/test-utils": "^1.0.0-beta.15",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.0.4",
"babel-plugin-transform-regenerator": "^6.26.0",
"vue-template-compiler": "^2.5.16",
"webpack-bundle-analyzer": "^2.11.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"indent": [
2,
4
],
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"semi": [
2,
"never"
],
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}