forked from kwameopareasiedu/react-simple-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·114 lines (114 loc) · 3.8 KB
/
package.json
File metadata and controls
executable file
·114 lines (114 loc) · 3.8 KB
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
{
"name": "react-simple-widgets",
"version": "5.0.1",
"description": "A collection of simple to use widgets for building react apps easily",
"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",
"main": "dist/bundle.js",
"typings": "dist/index.d.ts",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook -s .storybook",
"watch": "rollup -c rollup.config.js --watch --environment INCLUDE_DEPS,BUILD:development",
"build": "rollup -c rollup.config.js --environment INCLUDE_DEPS,BUILD:production && yarn build-storybook",
"copy-storybook-css": "cp .storybook/widgets.css docs/widgets.css && git add dist/bundle.js docs",
"build-storybook": "build-storybook -o ./docs",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/plugin-transform-spread": "^7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@jest/globals": "27.4.4",
"@rollup/plugin-image": "^2.0.5",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addons": "6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "6.4.9",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/react": "17.0.38",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"autoprefixer": "10.4.1",
"babel-loader": "^8.2.3",
"css-loader": "6.5.1",
"dayjs": "1.10.7",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"formik": "^2.1.4",
"husky": "7.0.4",
"jest": "27.4.5",
"node-sass": "7.0.1",
"postcss": "8.4.5",
"postcss-loader": "6.2.1",
"prettier": "2.5.1",
"react": "17.0.2",
"react-circular-progressbar": "^2.0.4",
"react-dom": "17.0.2",
"react-quill": "^1.3.5",
"react-router-dom": "^6.2.1",
"rollup": "^2.62.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.31.1",
"sass-loader": "12.4.0",
"style-loader": "3.3.1",
"ts-loader": "9.2.6",
"typescript": "4.5.4",
"url-loader": "^4.1.0",
"webpack": "5.65.0"
},
"peerDependencies": {
"formik": "^2.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && yarn copy-storybook-css"
}
},
"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"
]
}