forked from 3box/3box-chatbox-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 2.53 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
{
"name": "3box-chatbox-react",
"version": "0.1.11",
"description": "Chat component for decentralized applications by 3Box",
"author": "3box.io",
"license": "MIT",
"contributors": [
"Kenzo Nakamura <[email protected]>"
],
"main": "./lib/index.js",
"keywords": [
"chat",
"3Box",
"decentralized",
"ethereum"
],
"scripts": {
"analyze": "source-map-explorer 'dist/index.js'",
"build": "webpack --config webpack.config.babel.js",
"build:es5": "rm -rf ./lib; ./node_modules/.bin/babel src --out-dir lib --source-maps inline --copy-files --ignore=src/__tests__/,src/__mocks__/",
"build-examples": "webpack --config examples/webpack.config.babel.js --progress",
"clean": "rm -rf dist coverage",
"coverage": "jest --coverage",
"lint": "eslint ./src",
"prepublish": "npm run clean && npm run test && npm run build",
"start": "webpack-dev-server --config examples/webpack.config.live.babel.js",
"test": "npm run lint && npm run coverage"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^1.0.1",
"did-resolver": "0.0.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^4.2.0",
"jest-cli": "^23.6.0",
"prop-types": "^15.6.0",
"react": "^16.6.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.6.0",
"react-hot-loader": "^4.12.18",
"react-test-renderer": "^16.0.0",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.9.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"dependencies": {
"3box": "^1.17.1",
"3id-resolver": "0.0.6",
"@babel/cli": "^7.7.7",
"@babel/runtime": "^7.6.0",
"babel-core": "^7.0.0-bridge.0",
"emoji-js": "^3.4.1",
"ethereum-blockies-base64": "^1.0.2",
"istanbul-reports": "^2.2.6",
"node-sass": "^4.7.2",
"react-inlinesvg": "^1.1.6",
"react-linkify": "^1.0.0-alpha",
"source-map-explorer": "^2.1.2",
"svg-inline-loader": "^0.8.0"
}
}