generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "storybook-addon-faker",
"version": "0.0.0",
"private": true,
"description": "mock storybook data with a pre-seeded faker instance and control randomization from the ui",
"repository": {
"type": "git",
"url": "https://github.com/KevinMind/storybook-addon-faker"
},
"author": "Kevin Meinhardt <kmeinhardt7@gmail.com>",
"license": "MIT",
"scripts": {
"generate:example": "plop --plopfile plop/scripts/example.js",
"generate:package": "plop --plopfile plop/scripts/package.js",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"storybook": "turbo run storybook",
"build-storybook": "turbo run build-storybook",
"chromatic": "turbo run chromatic",
"release": "yarn build && yarn changeset publish",
"run-script": "yarn run zx"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@changesets/cli": "^2.25.1",
"babel-loader": "^8.2.3",
"chromatic": "^6.11.2",
"deepmerge": "^4.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.2",
"plop": "^3.0.5",
"turbo": "^1.1.6",
"zx": "^7.1.1"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"yarn": ">=1.22.19",
"node": ">=16.0.0 <=19.7.0"
}
}