forked from sendbird/sendbird-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.79 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
{
"name": "sendbird-uikit-src",
"version": "2.2.1",
"description": "React based UI kit for sendbird",
"main": "release/dist/esm/index.js",
"style": "release/dist/styles.css",
"typings": "src/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"test": "jest",
"test-update-snapshot": "jest -u",
"clean-release": "rm -rf ./release/**/*.js; rm -rf ./release/**/*.js.map",
"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",
"deploy-storybook": "storybook-to-ghpages",
"inspect": "npm run test; npm run lint;"
},
"repository": {
"type": "git",
"url": "git+https://github.com:sendbird/SendBird-UIKIT-JavaScript.git"
},
"author": "SendBird <support@sendbird.com>",
"license": "SEE LICENSE IN LICENSE.md",
"peerDependencies": {
"prop-types": "^15.7.2",
"css-vars-ponyfill": "^2.3.2",
"date-fns": "^2.16.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sendbird": "^3.0.140"
},
"bugs": {
"url": "https://github.com/sendbird/uikit-js/issues"
},
"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-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^5.0.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-scss": "^1.0.2",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@svgr/rollup": "^5.1.0",
"@svgr/webpack": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-es2015-rollup": "^3.0.0",
"browserslist": "^4.14.5",
"caniuse-lite": "^1.0.30001148",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"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": "^25.1.0",
"jsdom": "^16.1.0",
"plop": "^2.5.3",
"react-test-renderer": "^16.8.6",
"rollup": "^1.30.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-extensions": "^0.1.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.6",
"rollup-plugin-scss": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"sass-loader": "^8.0.2",
"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": "^3.9.6"
},
"browserslist": [
"defaults",
"IE 11"
],
"dependencies": {
"css-vars-ponyfill": "^2.3.2",
"date-fns": "^2.16.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sendbird": "^3.0.140"
}
}