-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "orbiter-spv",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"seqauto": "sequelize-auto -o ./src/models -d orbiter-new -h localhost -u root -p 3306 -x 123456 -e mysql -l ts",
"dev": "ts-node ./index.ts",
"pushServer": "ts-node ./cmd/server.js",
"inject": "ts-node ./cmd/client.js",
"start": "node ./dist/index.js",
"build": "npm run clean && tsc && ncp package.json dist/package.json",
"clean": "rimraf coverage output dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{js,ts}' 'index.ts' --fix",
"prettier": "prettier --check --write --config .prettierrc.json '**/*.{ts,tsc}'",
"prepare": "husky install",
"postinstall": "patch-package"
},
"bin": {
"inject": "./dist/inject/client.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/sequelize": "^4.28.13",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"ncp": "^2.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"bignumber.js": "^9.0.2",
"cache-manager": "^5.1.3",
"chalk": "^4.1.2",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"ioredis": "^5.2.0",
"keccak256": "^1.0.6",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-router": "^12.0.0",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.32",
"mysql2": "^2.3.3",
"orbiter-chaincore": "^1.3.5-alpha.21",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prompt": "^1.3.0",
"sequelize": "^6.21.0",
"sequelize-auto": "^0.8.8",
"sequelize-typescript": "^2.1.3",
"web3": "^1.7.5"
}
}