-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 832 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 832 Bytes
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
{
"name": "MiniAppCelo",
"version": "0.1.0",
"description": "MiniApp Farcaster en la red de celo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"type-check": "turbo type-check",
"contracts:compile": "turbo run compile --filter=hardhat",
"contracts:test": "turbo run test --filter=hardhat",
"contracts:deploy": "turbo run deploy --filter=hardhat",
"contracts:deploy:alfajores": "turbo run deploy:alfajores --filter=hardhat",
"contracts:deploy:celo": "turbo run deploy:celo --filter=hardhat"
},
"devDependencies": {
"@types/node": "^20.8.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.10.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}