forked from revoltchat/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.77 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
{
"name": "@revoltchat/ui",
"version": "1.0.40",
"description": "Revolt UI component library",
"type": "commonjs",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"repository": "https://github.com/revoltchat/components",
"author": "Paul Makles <insrt.uk>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@styled-icons/boxicons-logos": "^10.38.0",
"@styled-icons/boxicons-regular": "^10.38.0",
"@styled-icons/boxicons-solid": "^10.38.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.5",
"@storybook/react": "^6.5.5",
"@tippyjs/react": "^4.2.6",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^17.0.44",
"@types/react-beautiful-dnd": "^13",
"@types/react-dom": "^17.0.15",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.7",
"babel-preset-minify": "^0.5.1",
"mobx": "^6.6.0",
"mobx-react-lite": "^3.4.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-virtuoso": "^2.12.0",
"revolt.js": "latest",
"rimraf": "^3.0.2",
"storybook-dark-mode": "^1.1.0",
"storybook-rtl-addon": "^0.3.3",
"styled-components": "^5.3.5",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.2"
},
"scripts": {
"build": "yarn build:clean && yarn build:esm && yarn build:bundle",
"build:clean": "rimraf dist esm",
"build:esm": "babel src --no-babelrc --out-dir esm --extensions \".ts,.tsx\" --config-file ./.babelrc.es && tsc",
"watch:esm": "tsc-watch",
"build:bundle": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"watch:bundle": "yarn build:bundle --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"LICENSE",
"package.json",
"lib",
"src",
"esm"
],
"packageManager": "yarn@3.2.0",
"peerDependencies": {
"@tippyjs/react": "*",
"mobx": "*",
"mobx-react-lite": "*",
"react-beautiful-dnd": "*",
"react-device-detect": "*",
"react-virtuoso": "*",
"revolt.js": "*"
}
}