-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "storybook-addon-outline",
"version": "1.4.2",
"description": "Outline all elements with CSS to help with layout placement and alignment",
"repository": {
"type": "git",
"url": "https://github.com/chromaui/storybook-addon-outline"
},
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"",
"build:cjs": "babel ./src -d ./dist/cjs",
"build:esm": "babel ./src -d ./dist/esm --env-name esm",
"storybook": "start-storybook -p 6006",
"start": "concurrently \"npm run build:esm -- --watch\" \"npm run storybook -- --no-manager-cache --quiet\"",
"build-storybook": "build-storybook",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "npm run build && auto shipit --base-branch=main"
},
"author": "winkerVSbecks",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"storybook": {
"displayName": "Outline",
"unsupportedFrameworks": [
"react-native"
],
"icon": "https://user-images.githubusercontent.com/263385/101991674-48355c80-3c7c-11eb-9686-f684e755fcdd.png"
},
"keywords": [
"storybook-addons",
"essentials",
"outline",
"css",
"layout",
"debug",
"storybook-addon",
"style"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@storybook/addon-actions": "~6.3.0",
"@storybook/addon-essentials": "~6.3.0",
"@storybook/react": "~6.3.0",
"auto": "^10.3.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@storybook/addons": "~6.3.0",
"@storybook/api": "~6.3.0",
"@storybook/components": "~6.3.0",
"@storybook/core-events": "~6.3.0",
"ts-dedent": "^2.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
}
}