-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "microgrid",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node ./test/testRunner.js",
"dev": "next dev",
"reset": "rm -rf node_modules/ && npm install",
"deploy": "node ./ethereum/deploy.js",
"compile": "node ./ethereum/compile.js",
"prepareApp": "node ./ethereum/compileAppContracts.js && node ./ethereum/deployAppContracts.js",
"prepareDA": "node ./ethereum/compileDAContracts.js && node ./ethereum/deployDAContracts.js",
"prepareUP": "node ./ethereum/compileUPContracts.js && node ./ethereum/deployUPContracts.js",
"simDA" : "node ./simulation/simulationDoubleAuction.js",
"simUP" : "node ./simulation/simulationUniformPrice.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^0.2.0",
"algebra.js": "^0.2.6",
"axios": "^0.21.2",
"brain.js": "^1.2.4",
"child_process": "^1.0.2",
"circular-json": "^0.5.5",
"csv": "^3.1.0",
"csv-parse": "^4.4.6",
"csvtojson": "^2.0.8",
"d3": "^5.5.0",
"d3-node": "^2.0.1",
"d3node-linechart": "0.0.7",
"d3node-output": "^1.0.2",
"fast-csv": "^4.3.6",
"fs": "0.0.1-security",
"fs-extra": "^6.0.1",
"ganache-cli": "^6.1.6",
"jquery": "^3.3.1",
"json2csv": "^4.2.0",
"learningjs": "^0.1.2",
"ml-fnn": "^4.0.0",
"ml-logistic-regression": "^1.0.2",
"ml-random-forest": "^1.0.3",
"ml-regression": "^4.4.2",
"ml-regression-multivariate-linear": "^1.2.0",
"ml-svm": "^2.1.2",
"mocha": "^5.2.0",
"module": "^1.2.5",
"net": "^1.0.2",
"next": "^12.1.0",
"next-routes": "^1.4.2",
"node-sass": "^7.0.0",
"normal-distribution": "0.0.5",
"papaparse": "^5.2.0",
"plotly": "^1.0.6",
"plotly.js-dist": "^1.39.4",
"plotter": "^0.5.0",
"probability-distributions": "^0.9.1",
"promised-csv": "^1.0.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"regression": "^2.0.1",
"semantic-ui-react": "^0.82.0",
"solc": "^0.4.24",
"timeseries-analysis": "^1.0.12",
"truffle-hdwallet-provider": "0.0.5",
"web3": "^1.0.0-beta.26"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0"
}
}