forked from sendbird/sendbird-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.88 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
{
"name": "sendbird-uikit",
"version": "2.7.0",
"description": "React based UI kit for sendbird",
"main": "dist/cjs/index.js",
"style": "dist/index.css",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist/**/*",
"package-lock.json",
"LICENSE",
"CHANGELOG.md"
],
"devEngines": {
"node": "14.x || 15.x || 16.x"
},
"scripts": {
"test": "jest",
"test-update-snapshot": "jest -u",
"clean-release": "rm -rf ./dist",
"build": "npm run clean-release; rollup -c",
"start": "rollup -c -w",
"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;"
},
"repository": {
"type": "git",
"url": "[email protected]:sendbird/sendbird-uikit-react-sources.git"
},
"author": "SendBird <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"peerDependencies": {
"css-vars-ponyfill": "^2.3.2",
"date-fns": "^2.16.1",
"prop-types": "^15.7.2",
"react": "^16.8.6 || ^17.0.0",
"react-dom": "^16.8.6 || ^17.0.0"
},
"dependencies": {
"css-vars-ponyfill": "^2.3.2",
"date-fns": "^2.16.1",
"prop-types": "^15.7.2",
"sendbird": "^3.1.4"
},
"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.3.4",
"@storybook/addon-docs": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/addons": "^6.3.4",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.4",
"@storybook/storybook-deployer": "^2.8.10",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"browserslist": "^4.14.5",
"caniuse-lite": "^1.0.30001148",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.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",
"jest": "^27.0.6",
"jsdom": "^16.1.0",
"node-sass": "^6.0.1",
"np": "^7.5.0",
"plop": "^2.5.3",
"postcss": "^8.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.53.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-size-snapshot": "^0.12.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.3.5"
},
"browserslist": [
"defaults",
"IE 11"
]
}