-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "proxy-wallet",
"version": "4.3.5",
"description": "Proxy wallet repository",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RedDuck-Software/chainlink-hackathon-web-wallet.git"
},
"private": true,
"workspaces": [
"packages/extension",
"packages/rent-app"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"add:extension": "yarn workspace @proxy-wallet/extension add",
"test": "yarn workspaces foreach -pv run test",
"lint": "yarn workspaces foreach run lint",
"build:all": "ultra -r build && yarn run codegen",
"build:app": "cd packages/rent-app && yarn build",
"watch": "concurrently 'npm:watch-*'",
"build:extension": "cd packages/extension && npm run build",
"start:extension": "cd packages/extension && npm run start",
"codegen": "typechain --target=ethers-v5 --out-dir ./packages/extension/src/typechain './packages/extension/src/abi/*.json'"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"concurrently": "^7.3.0",
"devmoji": "^2.3.0",
"husky": "^8.0.1",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.19",
"ultra-runner": "^3.10.5"
}
}