-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.04 KB
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
{
"name": "addon-i18n",
"version": "0.0.1",
"description": "A library/framework/implementation agnostic i18n solution for storybook.",
"author": "CodeByAlex",
"license": "MIT",
"keywords": [
"addon",
"i18n",
"storybook",
"internationalization"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/CodeByAlex/storybook-i18n-addon/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeByAlex/storybook-i18n-addon.git"
},
"scripts": {
"prettier": "prettier --config .prettierrc --write '**/*.{ts,tsx}'",
"type:check": "tsc --isolatedModules --noEmit ",
"type:watch": "yarn type:check --watch",
"type:emit": "rm -rf dist && tsc --declaration --removeComments --emitDeclarationOnly",
"test": "jest --passWithNoTests",
"build": "babel src --out-dir dist --extensions \".ts,.tsx\" --ignore src/@types",
"prepare": "yarn test && yarn type:emit && yarn build"
},
"dependencies": {
"@storybook/addons": "5.1.0-alpha.27",
"@storybook/api": "5.1.0-alpha.27",
"@storybook/client-logger": "5.1.0-alpha.27",
"@storybook/components": "5.1.0-alpha.27",
"@storybook/core-events": "5.1.0-alpha.27",
"@storybook/theming": "5.1.0-alpha.27",
"core-js": "^2.6.5",
"memoizerific": "^1.11.3",
"react": "^16.8.4",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "24.0.11",
"@types/node": "^11.13.2",
"@types/react": "16.8.12",
"jest": "24.7.1",
"jest-dom": "3.1.3",
"jest-haste-map": "24.7.1",
"jest-resolve": "24.7.1",
"prettier": "1.16.4",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-testing-library": "6.1.2",
"typescript": "3.4.2"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@storybook/addons": ">=5 <6",
"@storybook/components": ">=5 <6"
}
}