This repository has been archived by the owner on Feb 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.99 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
{
"name": "@convergent/arena",
"author": "The Convergent Team",
"version": "0.0.1",
"description": "Personal economy platform",
"license": "AGPL-3.0",
"homepage": "https://proto.convergent.cx",
"dependencies": {
"@material-ui/core": "3.7.1",
"@material-ui/icons": "3.0.1",
"axios": "^0.18.0",
"d3": "4.10.0",
"d3-scale": "2.1.2",
"downshift": "3.1.8",
"drizzle": "1.2.4",
"drizzle-react": "1.2.0",
"eth-sig-util": "^2.1.0",
"ethereum-blockies-base64": "1.0.2",
"ganache-cli": "6.2.5",
"notistack": "0.4.1",
"react": "^16.6.0",
"react-dom": "^16.6.3",
"react-router-dom": "4.3.1",
"react-router-hash-link": "1.2.1",
"react-scripts": "2.1.2",
"react-step-wizard": "^5.0.0",
"react-stepzilla": "^4.8.0",
"react-text-loop": "2.0.0",
"recharts": "1.4.2",
"styled-components": "4.1.3",
"web3": "1.0.0-beta.37"
},
"devDependencies": {
"@convergent/arc": "0.0.3",
"@fortawesome/fontawesome-free": "^5.6.3",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-brands-svg-icons": "^5.6.3",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.3",
"babel-eslint": "9.0.0",
"bs58": "4.0.1",
"data-uri-to-buffer": "2.0.0",
"eslint": "5.6.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"husky": "1.3.1",
"ipfs-api": "26.1.2",
"openzeppelin-solidity": "2.0.0",
"prettier-eslint-cli": "4.7.1",
"react-dropzone": "8.0.3",
"truffle": "5.0.0-next.15"
},
"scripts": {
"start": "react-scripts start",
"build": "NODE_OPTIONS=--max_old_space_size=4096 react-scripts build --max-old-size=4096",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.js' 'src/**/*.jsx'",
"lint:fix": "eslint --fix 'src/**/*.js' 'src/**/*.jsx'",
"format": "prettier-eslint --write 'src/**/*.js' 'src/**/*.jsx'",
"truffle:build": "truffle compile",
"deploy:dev": "yarn truffle:build && truffle migrate --reset --network=development && cp -R build src",
"truffle:deploy:rinkeby": "truffle migrate --network rinkeby --reset",
"ganache": "ganache-cli --account='0x8ca64cb3d877a1d04badfa0292fc208f16379cb103d4b65a5a626b579ae054e3,100000000000000000000' --account='0x881b89ced6a55f80a66647ae401f10c3208b89e75d353c4fb4ee93f7ebb0d694,100000000000000000000'"
},
"eslintConfig": {
"extends": "react-app"
},
"greenkeeper": {
"ignore": [
"babel-eslint",
"d3",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn format && git add -A",
"pre-push": "yarn lint"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/convergentcx/Arena.git"
},
"keywords": [
"ethereum",
"tokens"
],
"bugs": {
"url": "https://github.com/convergentcx/Arena/issues"
},
"main": "index.jsx"
}