-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.1 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.1 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
{
"name": "import-app",
"version": "1.1.3",
"private": true,
"scripts": {
"bootstrap": "yarn build:modules-library",
"serve": "cross-env APP_ENV=development vite --force",
"preview": "vite preview",
"build": "yarn build:app && yarn build:types",
"build:app": "cross-env APP_ENV=production vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/types",
"publish": "yarn workspace @virtocommerce/import-app npm publish",
"build:modules-library": "yarn build:modules && yarn build:types-modules",
"build:modules": "vite build --config ./src/modules/vite.config.mts",
"build:types-modules": "vue-tsc --declaration --emitDeclarationOnly --p ./src/modules/tsconfig.json --outDir ./src/modules/dist/types",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --fix --cache '**/*.{ts,vue}'",
"lint-staged": "lint-staged",
"generate-api-client": "cross-env api-client-generator --APP_PLATFORM_MODULES='[VirtoCommerce.Import]' --APP_API_CLIENT_DIRECTORY=./src/api_client/",
"release": "tsx scripts/release.ts"
},
"workspaces": [
"src/api_client",
"src/modules"
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@laynezh/vite-plugin-lib-assets": "^0.5.13",
"@rollup/plugin-typescript": "^11.1.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vc-shell/api-client-generator": "^1.1.34",
"@vc-shell/release-config": "^1.1.34",
"@vc-shell/ts-config": "^1.1.34",
"@vitejs/plugin-vue": "5.0.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.16",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.0",
"lodash-es": "^4.17.21",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"sass": "^1.87.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.1",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-mkcert": "^1.17.1",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.3.2",
"vue-router-mock": "^1.1.0",
"vue-tsc": "^2.2.10"
},
"dependencies": {
"@vc-shell/config-generator": "^1.1.34",
"@vc-shell/framework": "^1.1.34",
"@vcmp-vendor-portal/api": "^1.1.3",
"@vcmp-vendor-portal/modules": "^1.1.3",
"@virtocommerce/import-app": "^1.1.3",
"@vueuse/core": "^10.7.1",
"@vueuse/integrations": "^10.7.1",
"cross-spawn": "^7.0.3",
"moment": "^2.30.1",
"vee-validate": "^4.12.4",
"vue": "^3.5.13",
"vue-router": "^4.2.5"
},
"lint-staged": {
"*.{js,ts,html,css}": "prettier --write '**/*.{ts,vue}'",
"*.{js,ts,vue}": "eslint --fix --cache '**/*.{ts,vue}'"
},
"packageManager": "yarn@4.9.2"
}