-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "storybook-css-modules",
"version": "1.0.8",
"description": "Storybook CSS Modules preset",
"author": {
"name": "onWidget",
"email": "contact@onwidget.com",
"url": "https://github.com/onwidget"
},
"license": "MIT",
"keywords": [
"storybook-addons",
"style",
"code",
"css-modules",
"css",
"preset",
"storybook",
"addon",
"cssmodules",
"modules"
],
"homepage": "https://storybook.js.org/addons/storybook-css-modules",
"bugs": {
"url": "https://github.com/onwidget/storybook-css-modules/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/onwidget/storybook-css-modules.git"
},
"files": [
"dist/**/*",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && babel ./src --ignore '**/*.test.js' --out-dir ./dist",
"watch": "npm run clean && babel --watch ./src --ignore '**/*.test.js' --out-dir ./dist",
"clean": "rm -rf dist",
"prepublish": "npm run build",
"storybook": "start-storybook -c ./examples/react/.storybook",
"build-storybook": "build-storybook -c ./examples/react/.storybook"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@storybook/react": "^6.4.22",
"babel-loader": "^8.2.5",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"storybook": {
"displayName": "Storybook CSS Modules",
"unsupportedFrameworks": [],
"supportedFrameworks": [
"react",
"preact",
"vue"
],
"icon": "https://raw.githubusercontent.com/onwidget/storybook-css-modules/main/logo-css-modules.png"
}
}