-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
{
"name": "rjs-components",
"version": "0.8.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"docs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/griseduardo/rjs-components.git"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"**/src/components/**/**/*.[jt]s?(x)\"",
"lint-src": "eslint src",
"lint-fix": "eslint --fix",
"prepare": "husky install",
"create-base-component": "hygen baseComponent new"
},
"lint-staged": {
"src/components/base/**/*.tsx": [
"yarn lint-fix",
"yarn test --findRelatedTests --bail"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.6",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/blocks": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.14",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"chromatic": "^6.19.9",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.2.3",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.4.0",
"styled-components": "^6.0.4",
"tslib": "^2.6.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {}
}