This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "@vue-storefront/storyblok",
"version": "0.4.0",
"description": "Storyblok CMS integration with Vue Storefront",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"server": "server/index.js",
"scripts": {
"build": "rollup -c && rm -r -- ./server/*/",
"build:clean": "rollup -c && rm -r -- ./lib/*/ && rm -r -- ./server/*/",
"dev": "rollup -c -w",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .js,.ts --ignore-path .eslintignore .",
"prepublish": "yarn build",
"changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install",
"changesets:publish": "yarn build && yarn changeset publish"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --ext .js,.ts --ignore-path .eslintignore ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Vue Storefront",
"license": "MIT",
"dependencies": {
"@vue-storefront/core": "^2.4.3",
"axios": "^0.23.0",
"nanoid": "^3.1.30",
"storyblok-js-client": "^4.1.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@vue-storefront/eslint-config-integrations": "^0.0.19",
"@vue-storefront/integrations-tsconfig": "^0.0.4",
"@vue-storefront/rollup-config": "^0.0.6",
"@vue/eslint-config-typescript": "^7.0.0",
"@jest/globals": "^27.2.5",
"husky": "^8.0.3",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"ts-jest": "^29.1.0"
},
"peerDependencies": {
"@storyblok/vue-2": "^3.0.17"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vuestorefront",
"vue-storefront",
"storyblok",
"cms",
"integration",
"vue",
"vuejs"
],
"homepage": "https://github.com/vuestorefront/storyblok"
}