-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 3.08 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
{
"name": "se-2",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "20"
},
"devDependencies": {
"husky": "~8.0.3",
"lint-staged": "~13.2.2"
},
"scripts": {
"hardhat:account": "yarn workspace @se-2/hardhat account",
"hardhat:chain": "yarn workspace @se-2/hardhat chain",
"hardhat:chain-watch": "yarn workspace @se-2/hardhat chain-watch",
"hardhat:clean": "yarn workspace @se-2/hardhat clean",
"hardhat:compile": "yarn workspace @se-2/hardhat compile",
"hardhat:deploy": "yarn workspace @se-2/hardhat deploy",
"hardhat:deploy:sepolia": "yarn workspace @se-2/hardhat deploy-sepolia",
"hardhat:flatten": "yarn workspace @se-2/hardhat flatten",
"hardhat:fork": "yarn workspace @se-2/hardhat fork",
"format": "yarn next:format && yarn hardhat:format",
"hardhat:generate": "yarn workspace @se-2/hardhat generate",
"hardhat-verify": "yarn workspace @se-2/hardhat hardhat-verify",
"hardhat:format": "yarn workspace @se-2/hardhat format",
"hardhat:lint": "yarn workspace @se-2/hardhat lint",
"hardhat:lint-staged": "yarn workspace @se-2/hardhat lint-staged",
"hardhat:test": "yarn workspace @se-2/hardhat test",
"postinstall": "husky install",
"next:build": "yarn workspace @se-2/nextjs build",
"next:check-types": "yarn workspace @se-2/nextjs check-types",
"next:format": "yarn workspace @se-2/nextjs format",
"next:lint": "yarn workspace @se-2/nextjs lint",
"next:serve": "yarn workspace @se-2/nextjs serve",
"precommit": "lint-staged",
"start": "yarn workspace @se-2/nextjs dev",
"test": "yarn hardhat:test",
"vercel": "yarn workspace @se-2/nextjs vercel",
"vercel:yolo": "yarn workspace @se-2/nextjs vercel:yolo",
"verify": "yarn workspace @se-2/hardhat verify",
"secret:clean": "yarn workspace secret-contracts-scripts clean",
"secret:build": "yarn workspace secret-contracts-scripts build",
"secret:setEVMGatewayAddress": "yarn workspace secret-contracts-scripts setEVMGatewayAddress",
"secret:queryPubkey": "yarn workspace secret-contracts-scripts queryPubkey",
"secret:querySecretGatewayPubkey": "yarn workspace secret-contracts-scripts querySecretGatewayPubkey",
"secret:submitRequestValue": "yarn workspace secret-contracts-scripts submitRequestValue",
"secret:submitRetrievePubkey": "yarn workspace secret-contracts-scripts submitRetrievePubkey",
"secret:upload": "yarn workspace secret-contracts-scripts upload",
"secret:instantiate": "yarn workspace secret-contracts-scripts instantiate",
"secret:uploadAndInstantiateNunya": "yarn workspace secret-contracts-scripts uploadAndInstantiateNunya",
"secret:uploadGateway": "yarn workspace secret-contracts-scripts uploadGateway",
"secret:instantiateGateway": "yarn workspace secret-contracts-scripts instantiateGateway",
"secret:uploadAndInstantiateGateway": "yarn workspace secret-contracts-scripts uploadAndInstantiateGateway"
},
"packageManager": "[email protected]",
"dependencies": {
"eslint-plugin-react": "^7.37.1",
"qrcode.react": "^4.0.1"
}
}