-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.64 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
{
"name": "field-plugin",
"version": "0.0.0",
"description": "SDK for creating Field Plugins for Storyblok.",
"author": {
"name": "Storyblok",
"email": "it@storyblok.com",
"url": "https://www.storyblok.com/"
},
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/cli/templates/*",
"packages/lib-helpers/*"
],
"engines": {
"yarn": "^3.2.4"
},
"packageManager": "yarn@3.2.4",
"main": "dist/index.js",
"type": "module",
"scripts": {
"postinstall": "yarn build && yarn prepare-dev-configs",
"build": "turbo run build",
"build:lib": "turbo run build --filter=./packages/field-plugin",
"build:cli": "turbo run build --filter=./packages/cli",
"build:sandbox": "turbo run build --filter=./packages/sandbox",
"prepare-dev-configs": "./scripts/prepare-dev-vite-configs.mjs",
"test": "yarn test:lib",
"test:lib": "yarn workspace @storyblok/field-plugin test",
"test:lib:watch": "yarn workspace @storyblok/field-plugin test --watch",
"test:cli": "yarn workspace @storyblok/field-plugin-cli test",
"test:cli:watch": "yarn workspace @storyblok/field-plugin-cli test:watch",
"check:types": "yarn workspaces foreach run check:types",
"lint": "eslint .",
"dev:demo": "yarn workspace demo dev",
"dev:cli": "yarn workspace @storyblok/field-plugin-cli dev",
"dev:lib": "yarn workspace @storyblok/field-plugin dev",
"dev:sandbox": "yarn workspace sandbox dev",
"dev:template": "yarn workspace field-plugin-${0}-template dev --config node_modules/.${0}-vite.config.ts",
"dev:react": "yarn dev:template react",
"dev:js": "yarn dev:template js",
"dev:vue2": "yarn dev:template vue2",
"dev:vue3": "yarn dev:template vue3",
"test:template": "yarn workspace field-plugin-${0}-template test --config node_modules/.${0}-vite.config.ts --ui",
"test:react": "yarn test:template react",
"test:vue3": "yarn test:template vue3",
"bump-version": "./scripts/bump-version.ts"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@storyblok/mui": "0.2.0",
"@types/node": "18.19.54",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.12",
"eslint-plugin-vue": "9.28.0",
"globals": "15.9.0",
"kleur": "4.1.5",
"prettier": "^3.3.3",
"prompts": "2.4.2",
"semver": "7.6.3",
"tsx": "3.14.0",
"turbo": "2.1.3",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0",
"vite": "5.4.8",
"vite-plugin-dts": "1.7.3",
"vue-eslint-parser": "9.4.3",
"zx": "7.2.3"
}
}