-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.44 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
{
"name": "@faculedesma/ledesma-lib",
"version": "1.4.2",
"description": "A react component library.",
"license": "ISC",
"scripts": {
"lint": "eslint src --ext .ts",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-lib": "rollup -c",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release --branches main"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "8.3.3",
"@storybook/addon-actions": "6.5.15",
"@storybook/addon-essentials": "6.5.15",
"@storybook/addon-interactions": "6.5.15",
"@storybook/addon-links": "6.5.15",
"@storybook/builder-webpack5": "6.5.15",
"@storybook/manager-webpack5": "6.5.15",
"@storybook/react": "6.5.15",
"@storybook/testing-library": "0.0.13",
"@svgr/rollup": "6.5.1",
"@svgr/webpack": "6.5.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/node": "16.18.10",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@typescript-eslint/eslint-plugin": "5.46.0",
"babel-loader": "9.1.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "15.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"node-sass": "8.0.0",
"postcss": "8.4.20",
"prettier": "2.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "2.78.0",
"rollup-plugin-dts": "5.0.0",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.57.1",
"sass-loader": "13.2.0",
"semantic-release": "19.0.5",
"style-loader": "3.3.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"peerDependencies": {
"react": "18.2.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/faculedesma"
},
"repository": {
"type": "git",
"url": "https://github.com/faculedesma/ledesma-lib.git"
}
}