-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
85 lines (85 loc) · 2.37 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
{
"name": "@storyblok/nuxt",
"type": "module",
"version": "6.1.0",
"packageManager": "[email protected]",
"description": "Storyblok Nuxt module",
"repository": {
"type": "git",
"url": "git+https://github.com/storyblok/storyblok-nuxt.git"
},
"bugs": {
"url": "https://github.com/storyblok/storyblok-nuxt/issues"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"build": "nuxt-module-build prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "nuxi preview playground",
"prepare:playground": "nuxi prepare playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:3000 cy:run",
"test:e2e-watch": "start-server-and-test dev http://localhost:3000 cy:open",
"pretest:e2e-static": "nuxi generate playground",
"test:e2e-static": "start-server-and-test dev:preview http://localhost:3000 cy:run",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@storyblok/vue": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@cypress/vite-dev-server": "^5.2.0",
"@nuxt/eslint": "^0.6.1",
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/kit": "^3.13.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@storyblok/eslint-config": "^0.3.0",
"@types/node": "^20.8.10",
"cypress": "^13.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-vue": "^9.28.0",
"nuxt": "^3.13.2",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
}
}