-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.14 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
{
"name": "deal-maker-cli",
"version": "0.1.0",
"description": "",
"bin": "lib/cli/index.js",
"engines": {
"node": ">=12 <13"
},
"scripts": {
"start": "cross-env NODE_ENV=development ts-node src/cli run",
"start:config": "cross-env NODE_ENV=development ts-node src/cli config",
"start:watch": "nodemon",
"start:cli": "ts-node src/cli run",
"start:prod": "cross-env NODE_ENV=production node lib/cli run",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"build": "cross-env NODE_ENV=production yarn run tsc",
"clean": "npx rimraf lib && npx rimraf tsconfig.tsbuildinfo",
"format": "prettier -w --ignore-unknown src/**/*",
"db:init": "typeorm migration:generate -c production -n CreateDatabase -d src/migrations && typeorm -c production migration:run",
"init": "npm run build && npm run db:init && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": "npm run format"
},
"repository": {
"type": "git",
"url": "[email protected]:glias/deal-maker-cli.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@ckb-lumos/base": "0.13.2",
"@types/cron": "1.7.2",
"@types/jest": "26.0.19",
"@types/node": "14.14.16",
"@types/socket.io": "2.1.11",
"cross-env": "7.0.3",
"fetch-mock": "9.10.7",
"fetch-mock-jest": "1.3.0",
"husky": "4.3.6",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"nodemon": "2.0.6",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"ts-node": "9.0.0",
"typescript": "4.1.3"
},
"dependencies": {
"@ckb-lumos/indexer": "0.13.1",
"@nervosnetwork/ckb-sdk-core": "0.38.2",
"@nervosnetwork/ckb-sdk-rpc": "0.38.2",
"@nervosnetwork/ckb-sdk-utils": "0.38.2",
"axios": "0.21.1",
"bignumber.js": "^9.0.1",
"class-validator": "0.12.2",
"commander": "6.2.1",
"cron": "1.8.2",
"dotenv": "8.2.0",
"inversify": "5.0.5",
"reflect-metadata": "0.1.13",
"socket.io": "2.3.0",
"sqlite3": "5.0.0",
"tslib": "2.0.3",
"typeorm": "0.2.29",
"winston": "3.3.3"
}
}