-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
114 lines (114 loc) · 3.4 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "simple-vue-netlify-auth",
"version": "0.1.0",
"private": true,
"scripts": {
"bootstrap-db": "node ./scripts/bootstrap-db.js",
"serve": "npm run bootstrap-db && vue-cli-service serve",
"build": "vue-cli-service build",
"build:local": "vue-cli-service build",
"prebuild": "echo 'Check FaunaDB schemas' && npm run bootstrap-db",
"lint": "vue-cli-service lint --no-fix ",
"lint:--fix": "vue-cli-service lint --no-fix ",
"deploy:preview": "npm run build:local && netlify deploy",
"deploy:prod": "npm run build:local && netlify deploy --prod ",
"test:unit": "vue-cli-service test:unit",
"test:unit--watch": "vue-cli-service test:unit --watch",
"start": "netlify dev"
},
"dependencies": {
"chalk": "^3.0.0",
"core-js": "^3.3.2",
"faunadb": "^2.10.0",
"generate-password": "^1.4.2",
"gotrue-js": "^0.9.25",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "4.14.1",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:vue/essential",
"plugin:prettier/recommended",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-extra-boolean-cast": 1,
"vue/attribute-hyphenation": "warning",
"vue/html-closing-bracket-newline": "warning",
"vue/html-closing-bracket-spacing": "warning",
"vue/html-end-tags": "warning",
"vue/html-indent": "warning",
"vue/html-quotes": "warning",
"vue/html-self-closing": "warning",
"vue/max-attributes-per-line": "warning",
"vue/multiline-html-element-content-newline": "warning",
"vue/mustache-interpolation-spacing": "warning",
"vue/name-property-casing": "warning",
"vue/no-multi-spaces": "warning",
"vue/no-spaces-around-equal-signs-in-attribute": "warning",
"vue/no-template-shadow": "warning",
"vue/prop-name-casing": "warning",
"vue/require-default-prop": "warning",
"vue/require-prop-types": "warning",
"vue/singleline-html-element-content-newline": "warning",
"vue/v-bind-style": "warning",
"vue/v-on-style": "warning",
"vue/attributes-order": "error",
"vue/no-confusing-v-for-v-if": "error",
"vue/no-v-html": "error",
"vue/order-in-components": "error",
"vue/this-in-template": "error",
"vue/arrow-spacing": "warning",
"vue/eqeqeq": "warning"
},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}