forked from turbo-eth/turbo-eth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "turbo-eth",
"version": "0.0.0-beta.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"contracts/*",
"packages/*"
],
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"wagmi": "0.4.2"
}
}
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lab": "turbo run lab",
"clean": "turbo run clean",
"cleanself": "rm -rf ./node_modules && rm -rf ./dist && rm -rf ./build && rm -f pnpm-lock.yaml",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@babel/core": "7.18.5",
"@coinbase/wallet-sdk": "^3.3.0",
"eslint-config-custom": "^0.0.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]"
}