-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 KB
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": "safe-apps-workshop",
"version": "1.0.0",
"description": "safe apps workshop monorepo",
"main": "index.js",
"private": true,
"repository": "git@github.com:5afe/safe-apps-workshop.git",
"author": "Daniel Somoza <daniel.somoza@safe.global>",
"license": "MIT",
"scripts": {
"start:counter-safe-app": "yarn workspace counter-safe-app-frontend start",
"start:counter-onboard": "yarn workspace counter-onboard-frontend start",
"test": "yarn workspaces run test",
"test:coverage": "yarn workspaces run test:coverage",
"contract:deploy": "yarn workspace smart-contracts-hardhat contract:deploy",
"start:faucet": "yarn workspace faucet-backend start",
"start:faucet:prod": "yarn workspace faucet-backend start:prod"
},
"workspaces": [
"counter-onboard-frontend",
"counter-safe-app-frontend",
"faucet-backend",
"smart-contracts-hardhat"
],
"dependencies": {
"ethers": "^5.6.9"
},
"devDependencies": {
"@types/node": "^18.6.4",
"dotenv": "^16.0.1",
"typescript": "^4.7.4"
}
}