@joyfill/components 1.0.0-rc.1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +84 -0
- package/dist/index.esm.js +104 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +104 -0
- package/dist/index.js.map +1 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@joyfill/components",
|
|
3
|
+
"version": "1.0.0-rc.1.0.0",
|
|
4
|
+
"description": "Joyfill UI Components",
|
|
5
|
+
"source": "src/index.js",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"clean": "rm -rf dist",
|
|
13
|
+
"build": "npm run clean && NODE_ENV=production BABEL_ENV=production rollup -c",
|
|
14
|
+
"prepublishOnly": "npm run build",
|
|
15
|
+
"test": "export NODE_PATH=src && jest",
|
|
16
|
+
"test-watch": "export NODE_PATH=src && jest --watch",
|
|
17
|
+
"lint": "export NODE_PATH=src && npx eslint ./src",
|
|
18
|
+
"lint-fix": "export NODE_PATH=src && npx eslint ./src --fix",
|
|
19
|
+
"coverage": "export NODE_PATH=src && jest --coverage",
|
|
20
|
+
"snapshot": "jest -u",
|
|
21
|
+
"storybook": "export NODE_PATH=src && start-storybook -p 6006",
|
|
22
|
+
"build-storybook": "build-storybook",
|
|
23
|
+
"coverage-report": "export NODE_PATH=src && jest process.env.npm_config_filename --coverage --coverageDirectory=coverage"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/zionlabs/web-engine.git"
|
|
28
|
+
},
|
|
29
|
+
"author": "Joyfill Team",
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/joyfill/components/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/joyfill/components#readme",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@builttocreate/engine-utils": "1.23.2",
|
|
37
|
+
"@builttocreate/hot-formula-parser": "5.0.2",
|
|
38
|
+
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
39
|
+
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
40
|
+
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
41
|
+
"@fortawesome/react-fontawesome": "^0.1.18",
|
|
42
|
+
"@tanstack/react-virtual": "^3.0.0-beta.30",
|
|
43
|
+
"axios": "^0.27.2",
|
|
44
|
+
"chroma-js": "^2.1.1",
|
|
45
|
+
"draft-js": "^0.11.7",
|
|
46
|
+
"lodash": "^4.17.21",
|
|
47
|
+
"moment": "^2.29.3",
|
|
48
|
+
"prop-types": "^15.7.2",
|
|
49
|
+
"react-color": "^2.19.3",
|
|
50
|
+
"react-datepicker": "^2.14.1",
|
|
51
|
+
"react-dnd": "16.0.0",
|
|
52
|
+
"react-dnd-html5-backend": "16.0.1",
|
|
53
|
+
"react-draft-wysiwyg": "1.13.2",
|
|
54
|
+
"react-dropzone": "^14.2.1",
|
|
55
|
+
"react-grid-layout": "1.3.4",
|
|
56
|
+
"react-modal": "^3.16.1",
|
|
57
|
+
"react-resizable": "^3.0.4",
|
|
58
|
+
"react-select": "^5.2.2",
|
|
59
|
+
"react-signature-canvas": "^1.0.5",
|
|
60
|
+
"react-virtual": "2.10.4",
|
|
61
|
+
"reselect": "^4.1.5",
|
|
62
|
+
"styled-components": "^5",
|
|
63
|
+
"victory": "36.3.1"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@babel/cli": "^7.8.4",
|
|
67
|
+
"@babel/core": "^7.9.6",
|
|
68
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
69
|
+
"@babel/plugin-proposal-export-default-from": "^7.8.3",
|
|
70
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
71
|
+
"@babel/plugin-transform-regenerator": "^7.8.7",
|
|
72
|
+
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
73
|
+
"@babel/preset-env": "^7.20.2",
|
|
74
|
+
"@babel/preset-react": "^7.18.6",
|
|
75
|
+
"@babel/runtime": "^7.20.13",
|
|
76
|
+
"@rollup/plugin-babel": "^6.0.3",
|
|
77
|
+
"@rollup/plugin-commonjs": "^24.0.1",
|
|
78
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
79
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
80
|
+
"@rollup/plugin-url": "^8.0.1",
|
|
81
|
+
"@storybook/addon-actions": "^6.5.14",
|
|
82
|
+
"@storybook/addon-links": "^6.5.14",
|
|
83
|
+
"@storybook/addons": "^6.5.14",
|
|
84
|
+
"@storybook/builder-webpack5": "^6.5.14",
|
|
85
|
+
"@storybook/manager-webpack5": "^6.5.14",
|
|
86
|
+
"@storybook/react": "^6.5.14",
|
|
87
|
+
"@svgr/rollup": "^6.5.1",
|
|
88
|
+
"@testing-library/jest-dom": "^5.16.2",
|
|
89
|
+
"@testing-library/react": "^12.1.4",
|
|
90
|
+
"babel-eslint": "^10.1.0",
|
|
91
|
+
"babel-jest": "^25.5.1",
|
|
92
|
+
"babel-loader": "^8.1.0",
|
|
93
|
+
"babel-plugin-styled-components": "^2.0.7",
|
|
94
|
+
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
95
|
+
"buffer": "^5.5.0",
|
|
96
|
+
"core-js": "3",
|
|
97
|
+
"css-loader": "^6.7.1",
|
|
98
|
+
"eslint": "^6.8.0",
|
|
99
|
+
"eslint-config-airbnb": "^18.1.0",
|
|
100
|
+
"eslint-plugin-import": "^2.20.2",
|
|
101
|
+
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
102
|
+
"eslint-plugin-react": "^7.19.0",
|
|
103
|
+
"eslint-plugin-react-hooks": "^2.5.1",
|
|
104
|
+
"eslint-plugin-storybook": "^0.6.8",
|
|
105
|
+
"jest": "^25.0.0",
|
|
106
|
+
"jest-styled-components": "^7.0.8",
|
|
107
|
+
"postcss": "^8.4.21",
|
|
108
|
+
"react": "^18.2.0",
|
|
109
|
+
"react-dnd-test-backend": "^15.1.1",
|
|
110
|
+
"react-dom": "^18.2.0",
|
|
111
|
+
"rollup": "^3.14.0",
|
|
112
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
113
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
114
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
115
|
+
"style-loader": "^3.3.1",
|
|
116
|
+
"webpack": "^5.70.0",
|
|
117
|
+
"webpack-cli": "^4.9.2"
|
|
118
|
+
},
|
|
119
|
+
"peerDependencies": {
|
|
120
|
+
"react": "^18.0.0",
|
|
121
|
+
"react-dom": "^18.0.0"
|
|
122
|
+
},
|
|
123
|
+
"resolutions": {
|
|
124
|
+
"styled-components": "^5"
|
|
125
|
+
},
|
|
126
|
+
"jest": {
|
|
127
|
+
"verbose": true,
|
|
128
|
+
"moduleNameMapper": {
|
|
129
|
+
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
|
130
|
+
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|