forked from energywebfoundation/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.28 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
{
"name": "@energyweb/market-matcher-core",
"description": "",
"license": "GPL-3.0-only",
"author": "",
"homepage": "https://github.com/energywebfoundation/origin/tree/master/packages/market-matcher-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/energywebfoundation/origin.git"
},
"bugs": {
"url": "https://github.com/energywebfoundation/origin/issues"
},
"version": "2.0.0",
"main": "dist/js/src/index.js",
"scripts": {
"build": "yarn build:ts",
"build:ts": "tsc -b tsconfig.build.json --verbose --pretty",
"start": "ts-node src/main.ts",
"start-ganache": "ganache-cli -q -m 'chalk park staff buzz chair purchase wise oak receive avoid avoid home' -l 8000000 -e 1000000 -a 20 -p 8549",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"test": "yarn test:unit",
"test:unit": "mocha -r ts-node/register src/test/unit/*.test.ts --timeout 60000 --exit",
"test:unit:watch": "mocha -r ts-node/register src/test/unit/*.test.ts --timeout 60000 --exit --watch --watch-extensions ts",
"test:concurrent": "yarn test",
"clean": "shx rm -rf build dist",
"lint": "eslint \"src/**/*{.ts,.tsx}\"",
"lint-fix": "eslint \"src/**/*{.ts,.tsx}\" --fix",
"precommit": "lint-staged"
},
"types": "dist/js/src/index.d.ts",
"dependencies": {
"@energyweb/device-registry": "5.0.0",
"@energyweb/market": "5.0.0",
"@energyweb/origin": "3.1.4",
"@energyweb/origin-backend-client": "3.1.0",
"@energyweb/user-registry": "3.0.1",
"@energyweb/utils-general": "6.0.0",
"moment": "^2.24.0",
"web3": "1.2.4",
"web3-core": "1.2.4",
"winston": "3.2.1"
},
"devDependencies": {
"@energyweb/origin-backend-core": "1.1.0",
"@fluffy-spoon/substitute": "1.107.0",
"@types/lolex": "5.1.0",
"@types/web3": "1.0.20",
"lolex": "5.1.2"
},
"postinstall": "rm -f node_modules/web3/index.d.ts",
"gitHead": "54beaf7fe6686810de74ca290daf99cbde510f9d",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist/js/src"
]
}