-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "tailwind-tales-addon",
"version": "1.0.0-alpha.0",
"description": "A Tailwindcss Storybook addon",
"main": "dist/preset.js",
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/babel ./src --extensions .ts,.tsx --out-dir ./dist",
"build-storybook": "build-storybook -o docs",
"storybook": "start-storybook -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"storybook",
"addons"
],
"author": "Tarik Hamilton <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.12.17",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.1.18",
"@tailwindcss/postcss7-compat": "^2.0.4",
"autoprefixer": "^9",
"babel-loader": "^8.2.2",
"postcss": "^7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.2.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
}
}