-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@melonproject/reporting",
"description": "Melon Fund Reporting",
"contributors": [
"Simon Emanuel Schmid <simon@schmid.io>",
"Benjamin Zumbrunn <benzumbrunn@gmail.com>"
],
"scripts": {
"clean": "rimraf build node_modules/.cache",
"dev": "yarn app:dev & yarn storybook:dev && kill $!",
"start": "yarn app:dev",
"deploy": "yarn app:deploy && yarn storybook:deploy",
"lint": "yarn eslint src/",
"app:build": "parcel build src/index.html --out-dir build/production --cache-dir build/cache/production --detailed-report",
"app:deploy": "yarn app:build && cp config/deployment/now.json build/production && cd build/production && now && now alias melon-reporting",
"app:dev": "parcel src/index.html --out-dir build/development --cache-dir build/cache/development --port 3010",
"storybook:dev": "start-storybook -p 3050 -c config/storybook -s design/mockups",
"storybook:build": "build-storybook -c config/storybook -s design/mockups -o build/storybook",
"storybook:deploy": "yarn storybook:build && cd build/storybook && now && now alias melon-reporting-storybook",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melonproject/reporting.git"
},
"keywords": [
"melon",
"reporting",
"soldity",
"visualisation"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/melonproject/reporting/issues"
},
"dependencies": {
"@melonproject/melon.js": "0.8.21",
"@soldoc/soldoc": "^0.4.3",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"classnames": "^2.2.6",
"d3-array": "^1.2.1",
"d3-interpolate": "^1.2.0",
"d3-scale": "^2.1.0",
"d3-scale-chromatic": "^1.3.0",
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"faker": "^4.1.0",
"jsonschema": "^1.2.4",
"mathjs": "^5.0.4",
"mnid": "^0.1.1",
"node-forge": "^0.7.5",
"object-hash": "^1.3.0",
"path-to-regexp": "^2.2.1",
"ramda": "^0.25.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-serialize": "^0.2.0",
"recharts": "^1.0.0-beta.10",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"title-case": "^2.1.1",
"uport-connect": "^0.7.5",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-alias": "^1.1.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.2",
"now": "^11.3.1",
"parcel-bundler": "^1.9.7",
"postcss-modules": "^1.3.0",
"prettier": "^1.14.0",
"prettier-eslint": "^8.8.2",
"rimraf": "^2.6.2"
},
"homepage": "https://github.com/melonproject/reporting#readme"
}