-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
78 lines (78 loc) · 1.92 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
{
"name": "@timonwa/demo-ui-library",
"type": "module",
"version": "1.0.3",
"description": "A demo on how to create a React UI component library using React, Typescript, Rollup, Storybook, Jest and React testing library.",
"repository": {
"type": "git",
"url": "git+https://github.com/Timonwa/demo-ui-library.git"
},
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsup",
"build:dev": "tsup --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"demo",
"ui",
"react",
"library",
"tutorial",
"learning",
"educational",
"example",
"beginner-friendly",
"practice"
],
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"author": "Timonwa Akintokun",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@storybook/addon-essentials": "7.0.8",
"@storybook/addon-interactions": "7.0.8",
"@storybook/addon-links": "7.0.8",
"@storybook/blocks": "7.0.8",
"@storybook/react": "7.0.8",
"@storybook/react-webpack5": "7.0.8",
"@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.2",
"@types/styled-components": "^5.1.26",
"@zayne-labs/tsconfig": "^0.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"storybook": "7.0.8",
"terser": "^5.31.6",
"tslib": "^2.7.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.10"
},
"dependencies": {
"@timonwa/demo-ui-library": "link:"
}
}