-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.93 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
{
"name": "lightning-evm-bridge",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"account": "yarn workspace @lightning-evm-bridge/foundry account",
"chain": "yarn workspace @lightning-evm-bridge/foundry chain",
"compile": "yarn workspace @lightning-evm-bridge/foundry compile",
"deploy": "yarn workspace @lightning-evm-bridge/foundry deploy",
"deploy:verify": "yarn workspace @lightning-evm-bridge/foundry deploy:verify",
"fork": "yarn workspace @lightning-evm-bridge/foundry fork",
"foundry:lint": "yarn workspace @lightning-evm-bridge/foundry lint",
"foundry:test": "yarn workspace @lightning-evm-bridge/foundry test",
"generate": "yarn workspace @lightning-evm-bridge/foundry generate",
"postinstall": "husky install",
"next:check-types": "yarn workspace @lightning-evm-bridge/nextjs check-types",
"next:format": "yarn workspace @lightning-evm-bridge/nextjs format",
"next:lint": "yarn workspace @lightning-evm-bridge/nextjs lint",
"precommit": "lint-staged",
"prepare": "install-self-peers -- --ignore-scripts",
"server": "yarn workspace @lightning-evm-bridge/server start",
"start": "yarn workspace @lightning-evm-bridge/nextjs dev",
"test": "yarn foundry:test",
"vercel": "yarn workspace @lightning-evm-bridge/nextjs vercel",
"vercel:yolo": "yarn workspace @lightning-evm-bridge/nextjs vercel:yolo",
"verify": "yarn workspace @lightning-evm-bridge/foundry verify"
},
"resolutions": {
"usehooks-ts@^2.7.2": "patch:usehooks-ts@npm:^2.7.2#./.yarn/patches/usehooks-ts-npm-2.7.2-fceffe0e43.patch"
},
"devDependencies": {
"@types/express": "^4.17.1",
"husky": "~8.0.3",
"lint-staged": "~13.2.2"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.6.7",
"crypto": "^1.0.1",
"express": "^4.17.1",
"js-sha256": "^0.11.0",
"react-spinners": "^0.13.8"
}
}