-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.61 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
{
"name": "@sending-network/chat-component",
"description": "This project is created using Direflow",
"version": "1.0.0",
"author": "",
"license": "Apache 2.0",
"keywords": [
"direflow",
"react",
"webcomponent"
],
"homepage": "https://direflow.io/",
"repository": {
"type": "git",
"url": "https://github.com/Silind-Software/direflow"
},
"bugs": {
"email": "direflow@silind.com",
"url": "https://github.com/Silind-Software/direflow/issues/new"
},
"main": "dist/index.mjs",
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"start": "direflow-scripts start",
"build": "direflow-scripts build",
"build:lib": "direflow-scripts build:lib",
"mac-build": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build",
"win-build": "set NODE_OPTIONS=--openssl-legacy-provider && npm run build",
"pack": "node ./scripts/after-build.js",
"test": "direflow-scripts test",
"dist": "vite build"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@ethersproject/constants": "^5.7.0",
"add": "^2.0.6",
"animate.css": "^4.1.1",
"antd": "^5.0.1",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.9",
"direflow-component": "3.5.5",
"direflow-scripts": "3.5.5",
"emojibase-data": "^6.2.0",
"ethereumjs-util": "^7.1.5",
"event-emitter": "^0.3.5",
"lodash": "^4.17.21",
"mini-censor": "^1.0.4",
"postmate": "^1.5.2",
"randombytes": "^2.1.0",
"react": "16.13.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "16.13.1",
"react-infinite-scroller": "^1.2.6",
"react-scripts": "3.4.1",
"rlp": "^3.0.0",
"sendingnetwork-js-sdk": "^0.1.9",
"web3": "^1.8.2"
},
"devDependencies": {
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"file-loader": "^6.2.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"react-app-rewired": "2.1.3",
"react-test-renderer": "16.9.0",
"shelljs": "^0.8.5",
"to-string-loader": "^1.1.6",
"url-loader": "^4.1.1",
"vite": "^4.5.0",
"webpack-cli": "^3.3.11"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"setupFilesAfterEnv": [
"direflow-scripts/direflow-jest.config.js"
]
},
"config-overrides-path": "direflow-webpack.js"
}