-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "@reusejs/react-pickers",
"version": "0.0.15",
"description": "A library of reactjs pickers",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reusejs/react-pickers.git"
},
"bugs": {
"url": "https://github.com/reusejs/react-pickers/issues"
},
"homepage": "https://github.com/reusejs/react-pickers",
"author": "Rajiv Seelam",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"release": "gh release create",
"bump": "npm version patch",
"build": "NODE_ENV=production rollup -c",
"serve": "NODE_ENV=production rollup -c -w",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook",
"chromatic": "chromatic --exit-zero-on-changes"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"regenerator-runtime": "^0.13.9",
"@reusejs/react-utils": "^0.0.8",
"@reusejs/react-text-inputs": "^0.0.5"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@heroicons/react": "^1.0.5",
"@reusejs/react-text-inputs": "^0.0.5",
"@reusejs/react-utils": "^0.0.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-a11y": "^6.3.12",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.3.12",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"chromatic": "^6.0.4",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.58.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-postcss": "^4.0.1",
"tailwindcss": "^2.2.17"
},
"dependencies": {}
}