forked from wormhole-foundation/wormhole-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1015 Bytes
/
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
{
"name": "wormhole-foundation",
"private": true,
"workspaces": [
"sdk",
"wormhole-connect",
"wormhole-connect-loader",
"builder"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"compile": "npm run compile --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:ci": "npm run lint:ci --workspaces --if-present",
"wormhole-connect": "npm run workspace @wormhole-foundation/wormhole-connect",
"sdk": "npm run workspace @wormhole-foundation/wormhole-connect-sdk",
"builder": "npm run workspace wormhole-connect-builder",
"prettier": "npm run prettier --workspaces --if-present",
"prepare": "husky install"
},
"dependencies": {
"tss-react": "^4.7.7"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.2",
"webpack-bundle-analyzer": "^4.9.1"
},
"lint-staged": {
"**/*": "prettier --workspaces --if-present --write --ignore-unknown"
}
}