This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.53 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
86
87
88
89
90
91
92
93
{
"name": "storybook-addon-rtl",
"description": "Right-to-left addon for Storybook.",
"author": {
"name": "unindented"
},
"version": "0.4.4",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/unindented/storybook-addon-rtl.git"
},
"files": [
"dist",
"register.js",
"preset.js"
],
"keywords": [
"storybook",
"storybook-addon",
"rtl",
"directionality",
"right-to-left",
"ltr",
"internationalization",
"i18n"
],
"storybook": {
"displayName": "Storybook Addon RTL",
"supportedFrameworks": [
"react",
"vue",
"angular",
"web-components"
]
},
"scripts": {
"clean:coverage": "rimraf coverage",
"clean:dist": "rimraf dist",
"clean": "run-p clean:*",
"test:lint": "eslint . .storybook",
"test:unit": "jest src --coverage --config config/jest/config.json",
"test": "run-s test:*",
"build": "babel src -d dist",
"watch": "babel src --out-dir dist --watch",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages",
"storybook": "storybook dev",
"prepublishOnly": "run-s clean build"
},
"dependencies": {
"@storybook/components": "^7.0.0-alpha.48",
"@storybook/core-events": "^7.0.0-alpha.48",
"prop-types": "^15.8.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.17.12",
"@storybook/addon-actions": "~7.0.0-alpha.48",
"@storybook/addons": "~7.0.0-alpha.48",
"@storybook/builder-webpack5": "~7.0.0-alpha.48",
"@storybook/react": "~7.0.0-alpha.48",
"@storybook/react-webpack5": "^7.0.0-alpha.48",
"@storybook/storybook-deployer": "^2.8.16",
"@testing-library/react": "^13.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"npm-run-all": "^4.1.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"rimraf": "^3.0.2",
"storybook": "^7.0.0-alpha.48"
},
"peerDependencies": {
"@storybook/addons": ">=3.1.6 < 8.0.0",
"react": "*",
"react-dom": "*"
}
}