-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.62 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
{
"name": "eigen-secret",
"version": "0.0.1",
"private": true,
"scripts": {
"init:db": "cd server && rm -f data/db.sqlite && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all",
"server": "npm run build:server && cd server && npm start",
"server:proxy": "npm run build:server && cd server && npm start:proxy",
"build:core": "cd core && npm i && npm run build",
"build:server": "cd server && npm i && npm run build",
"build": "npm run build:core && npm run build:server",
"lint_sol": "./node_modules/.bin/solhint 'contracts/**/*.sol'",
"docs": "./node_modules/.bin/typedoc --out docs core/lib/",
"lint": "npm run lint_ts & npm run lint_sol",
"compile": "hardhat compile",
"test": "npm run build && npm run compile && npx hardhat test",
"lint_ts": "./node_modules/.bin/eslint --fix --ext .ts server core tasks test",
"clean": "rm -rf build dist typechain cache node_modules",
"deploy:goerli": "hardhat deploy --network goerli",
"deploy:hermez": "hardhat deploy --network hermez",
"deploy:mumbai": "hardhat deploy --network mumbai",
"deploy:scroll": "hardhat deploy --network scroll",
"deploy:dev": "hardhat deploy --network dev"
},
"dependencies": {
"@eigen-secret/core": "file:./core",
"@noble/secp256k1": "1.3.4",
"@openzeppelin/contracts": "^4.8.3",
"@types/node-fetch": "2.6.2",
"async-mutex": "^0.4.0",
"blake-hash": "^2.0.0",
"circomlibjs": "^0.1.7",
"consola": "^2.15.3",
"ethers": "^5.6.8",
"express-async-errors": "^3.1.1",
"ffjavascript": "^0.2.55",
"snarkjs": "^0.6.1"
},
"devDependencies": {
"@eslint/create-config": "^0.1.2",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"circom_runtime": "^0.1.18",
"circom_tester": "^0.0.19",
"circomlib": "2.0.5",
"dotenv": "^16.0.0",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-unused-imports": "^2.0.0",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.9",
"lerna": "^6.6.2",
"solhint": "^3.3.7",
"supertest": "^6.3.3",
"temp": "^0.9.4",
"tmp-promise": "^3.0.3",
"ts-node": "^10.4.0",
"typechain": "^8.1.1",
"typedoc": "^0.24.1",
"typescript": "4.9.5"
}
}