-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "@niltonxp/react-components-lib",
"version": "0.0.10",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs",
"sb": "storybook dev -p 6006",
"sb:build": "storybook build",
"deploy": "npm run build && npm version patch && npm publish --access public"
},
"author": "Ivanilton",
"license": "ISC",
"keywords": [
"react",
"typescript",
"lib",
"template",
"jest",
"storybook",
"rollup"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@storybook/addon-essentials": "^7.0.15",
"@storybook/addon-interactions": "^7.0.15",
"@storybook/addon-links": "^7.0.15",
"@storybook/blocks": "^7.0.15",
"@storybook/react": "^7.0.15",
"@storybook/react-webpack5": "^7.0.15",
"@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.1",
"@types/react": "^18.2.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.23.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.0.15",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "18.2.0"
}
}