-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
105 lines (105 loc) · 3.57 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
{
"name": "react-rollup-boilerplate",
"version": "5.0.0",
"description": "Boilerplate for writing React Libraries bundled with Rollup.js to commonJs and ES6 Modules and Storybook",
"author": "Kai Hotz",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:KaiHotz/react-rollup-boilerplate.git"
},
"homepage": "https://github.com/KaiHotz/react-rollup-boilerplate",
"publishConfig": {
"registry": "https://npm.pkg.github.com/<YourGitUserName>"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "NODE_ENV=development BABEL_ENV=development yarn storybook",
"build": "rimraf dist && NODE_ENV=production BABEL_ENV=production rollup -c",
"lint": "yarn check-types && yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"eslint:fix": "eslint . --fix",
"stylelint": "stylelint \"**/*.{css,scss,sass}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass}\" --fix",
"check-types": "tsc --noEmit true",
"ci": "yarn lint && yarn test --watch=false",
"test": "vitest --config ./vitest.config.ts",
"release": "yarn ci && yarn build && npm publish",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"peerDependencies": {
"clsx": "2.x",
"react": "19.x",
"react-dom": "19.x"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-url": "^8.0.2",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@svgr/rollup": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.1",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"prettier": "3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.0.1",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.83.0",
"storybook": "^8.4.7",
"stylelint": "^16.12.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.0",
"tslib": "^2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}