-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.02 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
{
"name": "reactive-bulma",
"version": "4.0.29",
"description": "A component library based on React, Bulma, Typescript and Rollup",
"keywords": [
"typescript",
"react",
"bulma",
"rollup",
"semantic-release",
"jest",
"prettier",
"eslint",
"husky",
"component-library"
],
"author": "Nicolás Omar González Passerino",
"license": "MIT",
"homepage": "https://reactivebulma.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/NicolasOmar/reactive-bulma.git"
},
"bugs": {
"url": "https://github.com/NicolasOmar/reactive-bulma/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"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 src/**/*.tsx",
"prettier": "prettier src/**/*.{tsx,ts} --write",
"prettier:ci": "prettier src/**/*.{tsx,ts} --check",
"lint-staged": "lint-staged -v",
"setup": "npm i && npm i -g npm-check-updates && husky install",
"prepare": "npm run build",
"build": "rollup -c --bundleConfigAsCjs",
"build:storybook": "storybook 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"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@mdi/font": "^7.4.47",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@storybook/addon-actions": "^8.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/addon-mdx-gfm": "^8.4.2",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/cli": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-webpack5": "^8.4.2",
"@storybook/test": "^8.4.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"bulma": "^0.9.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.6",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"npm-check-updates": "^17.1.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.24.4",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^24.2.0",
"storybook": "^8.4.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"prettier --write",
"eslint"
]
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}