-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.69 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
{
"version": "8.25.8",
"scripts": {
"build": "docker build -t bitcore-node . ",
"build:docker": "lerna run build:docker --concurrency 1 --stream",
"watch": "lerna run watch --parallel",
"postinstall": "npm run bootstrap && npm run compile",
"bootstrap": "lerna bootstrap",
"insight:build": "cd ./packages/insight && npm i && npm run build",
"node": "cd packages/bitcore-node && npm start",
"bws": "cd packages/bitcore-wallet-service && npm start",
"compile": "lerna run compile",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors",
"precommit": "eslint --pass-on-no-patterns --no-warn-ignored $(git diff --name-only --cached --diff-filter=AM)",
"test:bitcore-cli": "cd ./packages/bitcore-cli && npm run test",
"test:bitcore-client": "cd ./packages/bitcore-client && npm run test",
"test:bitcore-lib": "cd ./packages/bitcore-lib && npm run test",
"test:bitcore-lib-cash": "cd ./packages/bitcore-lib-cash && npm run test",
"test:bitcore-lib-doge": "cd ./packages/bitcore-lib-doge && npm run test",
"test:bitcore-lib-ltc": "cd ./packages/bitcore-lib-ltc && npm run test",
"test:bitcore-logging": "cd ./packages/bitcore-logging && npm run test",
"test:bitcore-mnemonic": "cd ./packages/bitcore-mnemonic && npm run test",
"test:bitcore-node": "cd ./packages/bitcore-node && npm run test",
"test:bitcore-p2p": "cd ./packages/bitcore-p2p && npm run test",
"test:bitcore-p2p-cash": "cd ./packages/bitcore-p2p-cash && npm run test",
"test:bitcore-p2p-doge": "cd ./packages/bitcore-p2p-doge && npm run test",
"test:bitcore-tss": "cd ./packages/bitcore-tss && npm run test",
"test:bitcore-wallet-service": "cd ./packages/bitcore-wallet-service && npm run test",
"test:bitcore-wallet-client": "cd ./packages/bitcore-wallet-client && npm run test",
"test:crypto-rpc": "cd ./packages/crypto-rpc && npm run test",
"test:crypto-wallet-core": "cd ./packages/crypto-wallet-core && npm run test"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "22.13.1",
"cz-customizable": "^5.2.0",
"eslint": "^9.37.0",
"eslint-plugin-import": "2.32.0",
"globals": "^16.4.0",
"husky": "^2.4.0",
"lint-staged": "^9.5.0",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"ts-node": "^8.0.3",
"typedoc": "^0.15.0",
"typescript-eslint": "^8.46.0"
},
"dependencies": {
"lerna": "^5.6.2",
"typescript": "5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}