-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.03 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
{
"scripts": {
"build": "rimraf dist && tsc",
"start:dev": "nodemon",
"prettier-format": "prettier --config .prettierrc.json library/**/**.ts --write",
"start": "node dist/main.js",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "eslint . --ext .ts",
"test": "yarn test:lib",
"test:lib": "mocha ./library --recursive --require ts-node/register",
"prepare": "husky install"
},
"devDependencies": {
"@noble/hashes": "^1.3.2",
"@types/aes-js": "^3.1.2",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.5",
"@types/crypto-js": "^4.1.2",
"@types/elliptic": "^6.4.15",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.2.3",
"rimraf": "^3.0.2",
"secp256k1": "^5.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@coral-xyz/anchor": "^0.28.0",
"@types/circomlibjs": "^0.1.2",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.14.195",
"@types/seedrandom": "^3.0.6",
"@types/snarkjs": "^0.7.3",
"aes-js": "^3.1.2",
"chai": "^4.3.7",
"circom_tester": "^0.0.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^3.0.0",
"ffjavascript": "^0.2.60",
"json-stable-stringify": "^1.0.2",
"json-stable-stringify-without-jsonify": "^1.0.1",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"seedrandom": "^3.0.5",
"snarkjs": "^0.7.0"
}
}