-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.04 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "reactive-bulma",
"version": "4.3.11",
"type": "module",
"description": "A component library based on React, Bulma, Typescript and Vite",
"keywords": [
"typescript",
"react",
"bulma",
"vite",
"semantic-release",
"jest",
"prettier",
"eslint",
"husky",
"storybook",
"component-library"
],
"author": "Nicolás Omar González Passerino",
"license": "MIT",
"homepage": "https://reactivebulma.netlify.app",
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasOmar/reactive-bulma.git"
},
"bugs": {
"url": "https://github.com/NicolasOmar/reactive-bulma/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "storybook dev -p 6006",
"start:cli": "npm start -- --no-open",
"test": "jest --watchAll=false --verbose",
"test:ci": "npm test -- --coverage",
"test:diff": "npm run test:ci -- -o",
"lint": "eslint",
"prettier": "prettier src/**/*.{tsx,ts} --write",
"prettier:ci": "prettier src/**/*.{tsx,ts} --check",
"lint-staged": "lint-staged -v",
"setup": "npm ci && husky",
"compile": "tsc -b",
"build": "npm run compile && vite build",
"build:storybook": "storybook build",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"create": "hygen component new",
"update": "npm run update:deps && npm run update:doctor && npm run update:storybook",
"update:deps": "ncu -i --format group",
"update:storybook": "npx storybook@latest upgrade && npm run build:storybook",
"update:doctor": "npm run prettier:ci && npm run lint && npm run test && npm run build"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.20.0",
"@mdi/font": "^7.4.47",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@storybook/addon-essentials": "^8.5.6",
"@storybook/addon-interactions": "^8.5.6",
"@storybook/addon-links": "^8.5.6",
"@storybook/addon-onboarding": "^8.5.6",
"@storybook/blocks": "^8.5.6",
"@storybook/react": "^8.5.6",
"@storybook/react-vite": "^8.5.6",
"@storybook/test": "^8.5.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/css-modules": "^1.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/react": "^19.0.9",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"bulma": "^0.9.4",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.11.3",
"glob": "^11.0.1",
"globals": "^15.15.0",
"husky": "^9.1.7",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"npm-check-updates": "^17.1.14",
"prettier": "^3.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^24.2.3",
"storybook": "^8.5.6",
"tslib": "^2.8.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0"
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"prettier --write",
"eslint"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}