-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "privacy-implementations",
"version": "0.0.0",
"description": "MPC Tss typescript implementation",
"scripts": {
"format": "prettier --write .",
"lint": "eslint './src/**/*.{js,json,ts}'",
"build": "tsc",
"start": "tsc && node ./build/index.js",
"start:dev": "nodemon src/index.ts",
"test": "node --import tsx --test src/**/*.test.ts src/**/**/*.test.ts"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/crypto-js": "^4.2.1",
"@types/elliptic": "^6.4.18",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.9.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^5.0.2",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"axios": "^1.6.5",
"bech32": "^2.0.0",
"bigint-crypto-utils": "3.3.0",
"bignumber.js": "^9.1.2",
"bs58": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"elliptic": "^6.5.4",
"ethers": "^6.9.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"flatted": "^3.2.9",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"nodemon": "^3.0.2",
"protobufjs": "^7.2.5",
"protoc-gen-js": "^3.21.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"uuid": "^9.0.1",
"wallet-address-validator": "^0.2.4",
"winston": "^3.11.0",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"engines": {
"node": "^21.0.0"
}
}