-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "rimble-web3-components",
"version": "0.2.1",
"description": "React components for web3 that help developers build dApps faster with better user experiences",
"keywords": [
"web3",
"dapp",
"utilities",
"rimble",
"react",
"monorepo",
"components",
"ethereum",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/rimble-web3-components"
},
"bugs": {
"url": "https://github.com/ConsenSys/rimble-web3-components/issues"
},
"homepage": "https://rimble.consensys.design",
"main": "index.js",
"author": "ConsenSys",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna exec -- rollup -c=../../rollup.config.js",
"start": "lerna exec --no-sort -- rollup -w -c=../../rollup.config.js",
"clean": "lerna run clean",
"lint": "lerna run lint",
"test": "lerna run test",
"check-packages": "yarn clean && yarn test && yarn lint && yarn build",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "24.7.1",
"lerna": "^2.11.0",
"lerna-get-packages": "^1.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3"
},
"dependencies": {
"@rimble/connection-banner": "1.0.0"
}
}