-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.32 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.32 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
70
71
72
73
74
75
76
77
{
"name": "@NicolasSancho/storybook-core",
"version": "1.1.8",
"description": "This is a storybook components library that is going to be consumed by other internal projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"dist/styles/tailwind.css"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc && npx tailwindcss -i ./src/styles/tailwind.css -o ./dist/styles/tailwind.css",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint ./src --ext .ts,.tsx",
"format": "prettier --write ./src",
"generate": "npx plop component"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasSancho/Storybook-core.git"
},
"homepage": "https://github.com/NicolasSancho/Storybook-core#readme",
"bugs": {
"url": "https://github.com/NicolasSancho/Storybook-core/issues"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@eslint/js": "^9.31.0",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-onboarding": "^8.2.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/blocks": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-vite": "^8.2.8",
"@storybook/test": "^8.2.8",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"autoprefixer": "^10.4.20",
"cpx": "^1.5.0",
"css-loader": "^7.1.2",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"plop": "^4.0.1",
"postcss": "^8.4.41",
"prettier": "^3.6.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"storybook": "^8.2.8",
"style-loader": "^4.0.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
},
"dependencies": {
"react-feather": "^2.0.10"
},
"peerDependencies": {
"react": ">=18.3.1 <20.0.0",
"react-dom": ">=18.3.1 <20.0.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.9"
}
}