-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.58 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.58 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
115
{
"name": "@roq/react-ui-components",
"version": "0.0.1",
"description": "",
"module": "./dist/index.mjs.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"codegen": "yarn graphql-code-generator --config codegen.ts",
"prebuild:rollup": "rimraf dist",
"build:rollup": "rollup -c rollup.config.ts",
"prebuild": "rimraf storybook-static",
"build": "npm run build-storybook",
"start": "npx http-server storybook-static -l $PORT",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"prebuild-storybook": "rimraf storybook-static",
"build-storybook": "build-storybook"
},
"keywords": [],
"author": "",
"license": "ISC",
"volta": {
"node": "16.17.1",
"npm": "8.19.2"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@draft-js-plugins/editor": "^4.1.3",
"@draft-js-plugins/mention": "^5.2.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@rollup/plugin-alias": "^4.0.0",
"@rollup/plugin-html": "^1.0.0",
"@rollup/plugin-json": "^5.0.0",
"axios": "^1.1.3",
"classnames": "^2.3.2",
"dayjs": "^1.11.5",
"draft-convert": "^2.1.13",
"draft-js-link-detection-plugin": "^0.0.4",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"graphql": "^15.8.0",
"html-react-parser": "^3.0.4",
"isomorphic-fetch": "^3.0.0",
"javascript-time-ago": "^2.5.7",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"node-polyfill-webpack-plugin": "^2.0.1",
"parse-url": "^8.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-infinite-scroll-hook": "^4.0.4",
"react-select": "^5.6.0",
"react-use": "^17.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.1",
"sanitize-html": "^2.7.2",
"sass": "^1.49.0",
"socket.io-client": "^4.4.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/client-preset": "^1.1.1",
"@graphql-codegen/typescript": "^2.8.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@mdx-js/react": "^2.1.5",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/react": "^6.4.9",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.8.3",
"@types/react": "^18.0.21",
"babel-loader": "^8.2.3",
"dotenv": "^16.0.3",
"esbuild": "^0.15.12",
"rimraf": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"storybook-addon-next": "^1.6.9"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"node": "16.x"
}
}