forked from nocturne-xyz/p0tion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.85 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
80
81
82
{
"name": "@p0tion/actions",
"version": "1.0.8",
"description": "A set of actions and helpers for CLI commands",
"repository": "[email protected]:privacy-scaling-explorations/p0tion.git",
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
"bugs": "https://github.com/privacy-scaling-explorations/p0tion/issues",
"license": "MIT",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js",
"types": "./dist/types/src/index.d.ts"
},
"main": "dist/index.node.js",
"types": "dist/types/src/index.d.ts",
"engines": {
"node": ">=16.14.0"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"typescript",
"zero-knowledge",
"zk-snarks",
"phase-2",
"trusted-setup",
"ceremony",
"snarkjs",
"circom"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"pre:publish": "yarn build",
"compile:contracts": "hardhat compile",
"test:contracts": "GOOGLE_APPLICATION_CREDENTIALS=\"../backend/serviceAccountKey.json\" && NODE_ENV=prod && TS_NODE_FILES=true hardhat test test/unit/contract.test.ts",
"verify:ceremony": "GOOGLE_APPLICATION_CREDENTIALS=\"../backend/serviceAccountKey.json\" && NODE_ENV=prod hardhat verifyCeremony",
"docs": "typedoc src/**/*.ts --out ../../docs/actions"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"@aws-sdk/client-ec2": "^3.358.0",
"@aws-sdk/client-s3": "^3.329.0",
"@aws-sdk/client-ssm": "^3.358.0",
"@octokit/auth-oauth-device": "^4.0.4",
"@types/winston": "^2.4.4",
"blakejs": "^1.2.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"ffjavascript": "^0.2.57",
"firebase": "^9.21.0",
"firebase-admin": "^11.8.0",
"googleapis": "^118.0.0",
"rimraf": "^5.0.0",
"rollup": "^3.21.6",
"snarkjs": "^0.6.11",
"solc": "^0.8.19"
},
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/mocha": "^10.0.1",
"@types/rollup-plugin-auto-external": "^2.0.2",
"hardhat": "^2.14.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"winston": "^3.8.2"
},
"publishConfig": {
"access": "public"
}
}