-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
95 lines (95 loc) · 2.42 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
94
95
{
"name": "storybook-addon-intl",
"version": "4.0.0",
"description": "Addon to provide locale switcher and react-intl for storybook",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./preview": {
"types": "./dist/preview.d.ts",
"import": "./dist/preview.js",
"require": "./dist/preview.cjs"
},
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"build:watch": "npm run build -- --watch",
"start": "run-p build:watch 'storybook --quiet'",
"storybook": "storybook dev --port 9001 --no-open",
"check-format": "prettier -c .",
"typecheck": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepack": "npm run build"
},
"files": [
"dist",
"preview.js",
"manager.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/truffls/storybook-addon-intl.git"
},
"keywords": [
"storybook",
"storybook-addon",
"storybook-addons",
"react-intl",
"i18n",
"l10n"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/truffls/storybook-addon-intl/issues"
},
"homepage": "https://github.com/truffls/storybook-addon-intl#readme",
"dependencies": {
"@storybook/theming": "^8.0.8"
},
"devDependencies": {
"@storybook/components": "^8.0.8",
"@storybook/manager-api": "^8.0.8",
"@storybook/preview-api": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/react-vite": "^8.0.8",
"@storybook/react-webpack5": "^8.0.8",
"@storybook/types": "^8.0.8",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react": "^4.2.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.5",
"storybook": "^8.0.8",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.9"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-intl": "^6.0.0"
},
"bundler": {
"exportEntry": "src/index.ts",
"managerEntry": "src/manager/index.ts",
"previewEntry": "src/preview/index.ts"
},
"storybook": {
"displayName": "storybook-addon-intl",
"supportedFrameworks": [
"react"
]
}
}