-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·116 lines (116 loc) · 3.47 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "react-simple-widgets",
"version": "6.7.0",
"description": "A collection of simple to use widgets for building react apps easily",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/kwameopareasiedu/react-simple-widgets#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kwameopareasiedu/react-simple-widgets"
},
"bugs": {
"url": "https://github.com/kwameopareasiedu/react-simple-widgets/issues"
},
"author": "Kwame Opare Asiedu",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook -s .storybook",
"watch": "rollup -c rollup.config.js --watch --environment INCLUDE_DEPS,BUILD:development",
"clean": "find dist/ -type f -name \"*.js\" ! -name \"index.js\"",
"build": "yarn clean && rollup -c rollup.config.js --environment INCLUDE_DEPS,BUILD:production",
"build-storybook": "build-storybook -o ./docs && cp .storybook/widgets.css docs/widgets.css",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-spread": "^7.19.0",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.10.4",
"@jest/globals": "29.0.3",
"@rollup/plugin-image": "^2.0.5",
"@storybook/addon-actions": "6.5.12",
"@storybook/addons": "6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "6.5.12",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.0.20",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"autoprefixer": "10.4.11",
"babel-loader": "^8.2.5",
"css-loader": "6.7.1",
"dayjs": "1.11.5",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"formik": "^2.1.4",
"husky": "8.0.1",
"jest": "29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "8.4.16",
"postcss-loader": "7.0.1",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"react-router-dom": "^6.4.0",
"rollup": "^2.79.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.34.0",
"sass": "^1.54.9",
"sass-loader": "13.0.2",
"style-loader": "3.3.1",
"styled-components": "^5.3.5",
"ts-loader": "9.3.1",
"typescript": "4.8.3",
"url-loader": "^4.1.0",
"webpack": "5.74.0"
},
"peerDependencies": {
"formik": "^2.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
},
"files": [
"dist",
"types.ts"
],
"jest": {
"moduleNameMapper": {
"\\.(s?css|jpg|png|svg)$": "<rootDir>/empty-module.js"
}
},
"keywords": [
"react",
"widget",
"form",
"context",
"provider",
"transition",
"list",
"flash",
"form",
"object",
"date",
"file",
"picker",
"breadcrumbs"
]
}