-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
50
{
"name": "@turbo-eth/labs",
"version": "0.0.0-beta.9",
"license": "MIT",
"workspaces": [
"apps/*",
"contracts/*",
"packages/*"
],
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@rainbow-me/rainbowkit": "0.4.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"wagmi": "0.6.3"
}
}
},
"scripts": {
"build": "turbo run build",
"build:prd": "turbo run build:prd",
"compile": "turbo run compile",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"chain": "turbo run chain",
"lab": "turbo run lab",
"lab:demo": "turbo run lab:demo",
"lab:fork": "turbo run lab:fork",
"clean": "turbo run clean",
"cleanself": "rm -rf ./node_modules && rm -rf ./dist && rm -rf ./build",
"refresh": "turbo run clean ; npm run cleanself"
},
"dependencies": {
"@babel/core": "7.18.5",
"@coinbase/wallet-sdk": "^3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"prettier": "^2.6.2",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}