forked from soelen/storybook-addon-rem
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.39 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
{
"name": "storybook-addon-rem",
"version": "2.0.0",
"description": "A storybook addon which helps you to test how your REM sized components behave.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/ts/index.d.ts",
"files": [
"src",
"dist",
"README.md",
"preset.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist",
"buildBabel": "concurrently \"npm run buildBabel:cjs\" \"npm run buildBabel:esm\"",
"buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"",
"buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"",
"buildTsc": "tsc --declaration --emitDeclarationOnly --outDir ./dist/ts -p tsconfig.build.json",
"prebuild": "npm run clean",
"build": "concurrently \"npm run buildBabel\" \"npm run buildTsc\"",
"build:watch": "concurrently \"npm run buildBabel:esm -- --watch\" \"npm run buildTsc -- --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/soelen/storybook-addon-rem.git"
},
"keywords": [
"storybook",
"storybookjs",
"storybook-addon",
"addon",
"tool",
"ui",
"user interface",
"frontend",
"style",
"CSS",
"elastic",
"font-size",
"rem"
],
"author": {
"name": "Uwe Sölen Flaig",
"email": "uwe.soelen.flaig@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/soelen/storybook-addon-rem/issues"
},
"homepage": "https://github.com/soelen/storybook-addon-rem#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"concurrently": "^7.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@storybook/manager-api": "8.0.4",
"@storybook/preview-api": "8.0.4",
"@storybook/components": "8.0.4",
"@types/react": "^18.0.27"
},
"storybook": {
"displayName": "Rem",
"icon": "https://raw.githubusercontent.com/soelen/storybook-addon-rem/master/.github/images/icon.gif",
"unsupportedFrameworks": [
"react-native"
],
"supportedFrameworks": [
"web components",
"angular",
"preact",
"svelte",
"react",
"vue"
]
}
}