-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.89 KB
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
{
"name": "shipchain-engine",
"version": "1.0.0",
"description": "ShipChain platform Web3 bindings and helper methods, plus an RPC server",
"main": "index.js",
"dependencies": {
"@types/node": "12.12.54",
"ajv": "^6.12.3",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.733.0",
"axios": "^0.19.2",
"compare-versions": "^3.6.0",
"config": "^3.3.1",
"eth-crypto": "^1.6.0",
"ethereumjs-tx": "^1.3.7",
"ethers": "^5.0.8",
"fast-json-stable-stringify": "^2.1.0",
"influx": "^5.6.3",
"jayson": "^3.3.3",
"libsodium-wrappers": "^0.7.8",
"loom-js": "^1.75.1",
"mkdirp": "^1.0.4",
"moment": "^2.27.0",
"pg": "^8.3.0",
"pm2": "^4.4.1",
"redis": "^3.0.2",
"redlock": "^4.1.0",
"regression": "^2.0.1",
"rimraf": "^3.0.2",
"ssh2-sftp-client": "2.5.0",
"ts-node": "8.10.2",
"typeorm": "0.2.25",
"typescript": "3.9.7",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"winston-cloudwatch": "^2.3.2",
"winston-elasticsearch": "^0.9.0"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.3.0",
"jest-environment-shipchain": "^1.0.0",
"jest-junit": "^11.1.0",
"mocha": "^8.1.1",
"nock": "^13.0.3",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0"
},
"resolutions": {
"@ledgerhq/hw-transport-node-hid": "https://github.com/ShipChain/resolve-none",
"handlebars": "4.3.0",
"js-yaml": "3.13.1"
},
"scripts": {
"postinstall": "$(yarn bin)/pm2 install typescript",
"compile": "rm -rf ./dist && tsc",
"lint": "eslint 'src/**/*.ts' 'rpc/**/*.ts' ",
"lint-junit": "eslint 'src/**/*.ts' 'rpc/**/*.ts' --format junit -o reports/junit/lint-junit.xml ",
"lint-html": "eslint 'src/**/*.ts' 'rpc/**/*.ts' --format html -o reports/lint.html ",
"test": "jest --detectOpenHandles --forceExit --runInBand",
"develop": "pm2-runtime start pm2-develop.config.js",
"start": "pm2-runtime start pm2-deploy.config.js",
"clean": "rm -rf ./dist && find src -name '*.js' ! -name 'testLoggingConfig.js' -delete && find src -name '*.js.map' ! -name 'testLoggingConfig.js' -delete && find rpc -name '*.js' -delete && find rpc -name '*.js.map' -delete",
"prettier": "./node_modules/.bin/prettier --write 'src/**/*.ts' 'rpc/**/*.ts' ",
"typeorm": "ts-node ./node_modules/.bin/typeorm",
"migrate": "ts-node RunMigrations.ts",
"revert": "ts-node RunMigrations.ts --revert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shipchain/engine.git"
},
"author": "Lucas Clay <lclay@shipchain.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/shipchain/engine/issues"
},
"homepage": "https://github.com/shipchain/engine#readme"
}