forked from omneex/openaltid-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.92 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.92 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
81
82
83
84
85
86
87
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 8000 ",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@headlessui/vue": "^1.5.0",
"@heroicons/vue": "^1.0.6",
"autoprefixer": "^10.4.4",
"axios": "^0.26.1",
"cookies": "^0.8.0",
"core-js": "^3.6.5",
"crypto-browserify": "^3.12.0",
"js-cookie": "^3.0.1",
"postcss": "^8.4.12",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tailwindcss": "^3.0.23",
"url": "^0.11.0",
"vue": "^3.2.31",
"vue-router": "^4.0.14",
"vue3-cookies": "^1.0.6",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/polyfill": "^7.11.5",
"@vue/cli-plugin-babel": "~5.0.4",
"@vue/cli-plugin-eslint": "~5.0.4",
"@vue/cli-plugin-router": "~5.0.4",
"@vue/cli-plugin-vuex": "~5.0.4",
"@vue/cli-service": "~5.0.4",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^8.5.0",
"mutationobserver-shim": "^0.3.7",
"popper.js": "^1.16.1",
"prettier": "^2.6.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"vue-cli-plugin-tailwind": "~3.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"airbnb-base",
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"no-tabs": "off",
"indent": [
"error",
"tab"
],
"vue/multi-word-component-names": "off",
"object-curly-newline": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/first": "off",
"import/order": "off",
"max-len": "off",
"operator-linebreak": "off"
}
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}