forked from naver/storybook-addon-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "storybook-addon-preview",
"version": "2.2.0",
"description": "Storybook Addon Preview can show user selected knobs in various framework code in Storybook",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"declaration": "./dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/ --ext .ts,.tsx",
"build": "rm -rf ./dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json && cpx 'src/css/*.css' 'dist/css'",
"build:esm": "tsc -p tsconfig.esm.json && cpx 'src/css/*.css' 'dist/esm/css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naver/storybook-addon-preview.git"
},
"author": {
"name": "NAVER Corp."
},
"license": "MIT",
"bugs": {
"url": "https://github.com/naver/storybook-addon-preview/issues"
},
"keywords": [
"storybook",
"addon",
"preview",
"storybook-addon",
"code"
],
"homepage": "https://github.com/naver/storybook-addon-preview#readme",
"dependencies": {
"@types/prismjs": "^1.16.0",
"@types/react-tabs": "^2.3.2",
"codesandbox": "^2.1.10",
"prismjs": "^1.17.1",
"react-tabs": "^3.0.0",
"@storybook/addon-knobs": "^6.0.0"
},
"devDependencies": {
"@storybook/addons": "^6.0.21",
"@storybook/api": "^6.0.21",
"@storybook/components": "^6.0.21",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"cpx": "^1.5.0",
"react": "^16.11.0",
"tslint": "^6.0.0",
"typescript": "^3.7.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0"
}
}