-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.71 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "sudo vue-cli-service serve:custom",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"generate": "graphql-codegen"
},
"dependencies": {
"@headlessui/vue": "^1.4.0",
"@heroicons/vue": "^1.0.3",
"@honeybadger-io/js": "^3.2.0",
"@shopify/admin-graphql-api-utilities": "^0.1.1",
"@shopify/app-bridge": "^1.27.2",
"@shopify/app-bridge-utils": "^1.27.2",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@types/animejs": "^3.1.3",
"@types/lodash": "^4.14.164",
"animejs": "^3.2.1",
"autoprefixer": "^9",
"axios": "^0.20.0",
"chart.js": "^3.5.0",
"core-js": "^3.6.5",
"dayjs": "^1.9.1",
"focus-visible": "^5.2.0",
"https-localhost": "^4.6.2",
"lodash": "^4.17.20",
"nanoid": "^3.1.25",
"postcss": "^7",
"qs": "^6.9.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"uploadcare-widget": "^3.10.2",
"vue": "^3.0.0-0",
"vue-gtag-next": "^1.14.0",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0",
"yup": "^0.32.9"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.19.1",
"@graphql-codegen/typescript": "^1.17.11",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"graphql": "^15.4.0",
"postcss-focus-visible": "^5.0.0",
"prettier": "^1.19.1",
"typescript": "~3.9.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"vue/custom-event-name-casing": "off"
},
"overrides": [
{
"files": [
"*.js"
],
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
],
"ignorePatterns": [
"src/types/admin/*"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"vuePlugins": {
"service": [
"config.js"
]
}
}