-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.65 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
{
"name": "page-builder",
"version": "1.1.0",
"private": true,
"scripts": {
"serve": "cross-env APP_ENV=development vite --force",
"preview": "vite preview",
"dev": "cross-env APP_ENV=development vite build --watch",
"build": "yarn build:app && yarn build:types",
"build:dev": "cross-env APP_ENV=development vite build",
"build:app": "cross-env APP_ENV=production vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/types",
"type-check": "vue-tsc --noEmit",
"lint-staged": "lint-staged",
"lint": "eslint --fix --cache '**/*.{ts,vue}'",
"generate-api-client": "cross-env api-client-generator --APP_PLATFORM_MODULES='[VirtoCommerce.PageBuilderModule]' --APP_API_CLIENT_DIRECTORY=./src/api_client/ --APP_OUT_DIR=dist --APP_PACKAGE_NAME=api --APP_PACKAGE_VERSION=$npm_package_version",
"release": "tsx scripts/release.ts --dry"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vc-shell/api-client-generator": "^1.2.3",
"@vc-shell/release-config": "^1.2.3",
"@vc-shell/ts-config": "^1.2.3",
"@vitejs/plugin-vue": "^5.2.4",
"@volar/typescript": "^2.4.28",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^14.7.0",
"autoprefixer": "^10.4.27",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^9.33.0",
"husky": "^8.0.3",
"lint-staged": "^15.5.2",
"lodash-es": "^4.17.23",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-mkcert": "^1.17.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.12"
},
"dependencies": {
"@vc-shell/config-generator": "^1.2.3",
"@vc-shell/framework": "^1.2.3",
"@vueuse/core": "^10.11.1",
"@vueuse/integrations": "^10.11.1",
"cross-spawn": "^7.0.6",
"moment": "^2.30.1",
"vee-validate": "^4.15.1",
"vue": "^3.5.30",
"vue-router": "^4.6.4"
},
"lint-staged": {
"*.{js,ts,html,css}": "prettier --write '**/*.{ts,vue}'",
"*.{js,ts,vue}": "eslint --fix --cache '**/*.{ts,vue}'"
},
"packageManager": "yarn@4.9.2"
}