forked from VirtoCommerce/vc-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.18 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
{
"name": "client-app",
"version": "0.0.4",
"private": true,
"scripts": {
"postinstall": "husky install",
"dev": "vite",
"dev-expose": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint-staged": "lint-staged",
"init-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint client-app/**/*.{js,ts,vue}",
"lint:fix": "eslint --fix client-app/**/*.{js,ts,vue}",
"prettier": "prettier --check client-app/**/*.{js,ts,vue,graphql,json}",
"prettier:fix": "prettier --write client-app/**/*.{js,ts,vue,graphql,json}",
"compress": "vue-tsc --noEmit && vite build && gulp compress",
"generate:graphql": "graphql-codegen -c graphql.codegen.yml -r dotenv/config && eolConverter crlf client-app/core/api/graphql/*",
"i18n:report": "vue-cli-service i18n:report --src './client-app/**/*.?(js|vue)' --locales './client-app/locales/**/*.json'",
"nswag": "nswag run"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@headlessui/vue": "^1.4.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@vueuse/core": "^7.5.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"core-js": "^3.20.3",
"dompurify": "^2.3.5",
"graphql": "^15.0.0",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21",
"marked": "^4.0.12",
"moment": "^2.29.1",
"swiper": "^8.0.6",
"vee-validate": "^4.5.6",
"vue": "^3.2.31",
"vue-router": "^4.0.12",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.2",
"@graphql-codegen/typescript-operations": "^2.2.2",
"@rollup/plugin-graphql": "^1.1.0",
"@types/dompurify": "^2.3.3",
"@types/lodash": "^4.14.177",
"@types/marked": "^4.0.1",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-vue": "^2.1.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.2",
"chalk": "^5.0.0",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eol-converter-cli": "^1.0.8",
"eslint": "^8.7.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.0",
"fse": "^4.0.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-zip": "^5.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"nswag": "^13.15.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5",
"vite": "^2.8.2",
"vue-eslint-parser": "^8.2.0",
"vue-tsc": "^0.31.4",
"yarn": "^1.22.17"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
],
"*.{graphql,json}": [
"prettier --write"
]
}
}