forked from sendbird/sendbird-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.16 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@sendbird/uikit-react",
"version": "3.3.5",
"description": "React based UI kit for sendbird",
"main": "dist/index.js",
"style": "dist/index.css",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"release/**/*",
"dist/**/*",
"package-lock.json",
"LICENSE",
"CHANGELOG.md"
],
"devEngines": {
"node": "16.x"
},
"scripts": {
"test": "jest",
"test-update-snapshot": "jest -u",
"cp-css": "./scripts/copy-css.sh",
"clean-release": "rm -rf ./release; rm -rf ./dist",
"build": "npm run clean-release; rollup -c",
"start": "rollup -c -w",
"reset": "rm -rf ./node_modules; npm install;",
"prepublishOnly": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"eslint": "eslint --no-eslintrc -c .eslintrc.js 'src/**'",
"stylelint": "stylelint 'src/**'",
"lint": "npm run eslint; npm run eslint-ts",
"eslint-ts": "eslint --no-eslintrc -c .eslintrc.json './src/**/*.ts*'",
"generate-component": "plop",
"rollup": "npm run clean-release; rollup -c",
"deploy-storybook": "storybook-to-ghpages",
"inspect": "npm run test; npm run lint;",
"bundle": "dts-bundle-generator -o ./dist/my.d.ts ./src/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+git@github.com:sendbird/sendbird-uikit-react-sources.git"
},
"author": "SendBird <support@sendbird.com>",
"license": "SEE LICENSE IN LICENSE.md",
"peerDependencies": {
"react": "^16.8.6 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@sendbird/chat": "^4.2.3",
"css-vars-ponyfill": "^2.3.2",
"date-fns": "^2.16.1",
"prop-types": "^15.7.2"
},
"bugs": {
"url": "https://community.sendbird.com"
},
"homepage": "https://sendbird.com",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.10",
"@storybook/storybook-deployer": "^2.8.12",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.0.1",
"babel-loader": "^8.0.6",
"browserslist": "^4.14.5",
"caniuse-lite": "^1.0.30001148",
"css-loader": "^3.4.2",
"dts-bundle-generator": "^6.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"global-jsdom": "^8.5.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jsdom": "^20.0.0",
"np": "^7.5.0",
"plop": "^2.5.3",
"postcss": "^8.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.53.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-polyfill-node": "^0.10.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"sass": "^1.55.0",
"sass-loader": "^10.2.0",
"style-loader": "^1.1.3",
"stylelint": "^13.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"ts-loader": "^7.0.5",
"tslib": "^2.0.0",
"typescript": "^4.7.4"
},
"browserslist": [
"defaults",
"IE 11"
]
}