forked from vuestorefront/storyblok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "@vue-storefront/storyblok",
"version": "0.3.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"
},
"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": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@jest/globals": "^27.2.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.19.1",
"husky": "^5.1.3",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.6",
"typescript": "^4.4.4"
},
"peerDependencies": {
"storyblok-vue": "^1.0.5"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vuestorefront",
"vue-storefront",
"storyblok",
"cms",
"integration",
"vue",
"vuejs"
],
"homepage": "https://github.com/vuestorefront/storyblok"
}