-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.41 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
76
77
78
79
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@node-dlc/bitcoin": "0.23.6",
"@node-dlc/core": "0.23.6",
"@node-dlc/messaging": "0.23.6",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.172",
"@swc/register": "^0.1.10",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "4.17.5",
"@types/mocha": "^8.0.3",
"@types/node": "16.10.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"bignumber.js": "^9.0.1",
"bip-schnorr": "^0.6.2",
"bip39": "^3.0.2",
"bitcoin-networks": "^1.0.0",
"cfd-dlc-js": "https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.48",
"cfd-js": "https://github.com/cryptogarageinc/cfd-js.git#v0.4.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.2",
"dotenv": "16.3.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"exports-loader": "^1.1.0",
"find-config": "1.0.0",
"fs": "0.0.1-security",
"lerna": "^4.0.0",
"lodash": "4.17.5",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"mocha-webpack": "^1.1.0",
"node-worker-threads-pool": "^1.4.3",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"ts-loader": "^8.0.3",
"ts-mocha": "8.0.0",
"ts-node": "^10.7.0",
"tslib": "^2.0.1",
"turbo": "^1.2.6",
"typescript": "^4.9.5",
"wasm-loader": "^1.3.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"resolutions": {
"strtok3": "6.0.5",
"bip174": "2.0.1"
},
"scripts": {
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"test": "yarn run test:unit",
"test:unit": "turbo run test",
"test:integration": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --parallel --max-old-space-size=4096",
"test:integration:sequential": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --max-old-space-size=4096 --timeout 60000",
"prepublishOnly": "yarn build",
"changeset": "changeset",
"version": "yarn changeset version",
"publish": "yarn build && yarn changeset publish"
},
"publishConfig": {
"access": "public"
}
}