forked from 100xDevs-hkirat/week-16-bp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "backpack",
"private": true,
"workspaces": {
"packages": [
"backend/workers/*",
"backend/native/*",
"examples/clients/*",
"examples",
"examples/xnft/*",
"packages/*",
"packages/blockchains/*",
"web"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-scripts",
"**/react-native-scripts/**",
"**/expo",
"**/expo/**",
"**/jest-expo",
"**/jest-expo/**"
]
},
"scripts": {
"lint": "turbo run lint --filter=!@coral-xyz/app-mobile",
"lint:fix": "turbo run lint:fix --filter=!@coral-xyz/app-mobile",
"prepare": "husky install",
"start": "env-cmd --silent turbo run start --concurrency=100% --filter=./packages/*",
"start:fresh": "yarn install && yarn clean && yarn install && yarn start",
"test": "env-cmd --silent turbo run test -- --passWithNoTests --watchAll=false",
"build": "env-cmd --silent turbo run build --filter=!./examples/**",
"build:fresh": "git clean -xfd && yarn install && yarn build --force",
"e2e": "env-cmd --silent turbo run e2e",
"clean": "git clean -xfd",
"start:ext": "env-cmd --silent turbo run start --filter=@coral-xyz/app-extension... --filter=@coral-xyz/background...",
"build:ext": "env-cmd --silent turbo run build --filter=@coral-xyz/app-extension... --filter=@coral-xyz/background...",
"start:mobile": "env-cmd --silent turbo run start --filter=@coral-xyz/app-mobile... --filter=@coral-xyz/background...",
"build:mobile": "env-cmd --silent turbo run build --filter=@coral-xyz/app-mobile... --filter=@coral-xyz/background...",
"postinstall": "yarn-deduplicate --scopes @babel @mui @typescript-eslint @types @react-native-community @react-navigation @emotion"
},
"devDependencies": {
"buffer": "^5.5.0",
"env-cmd": "^10.1.0",
"eslint": "^8.31.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.8.1",
"turbo": "^1.8.3",
"yarn-deduplicate": "^6.0.0"
},
"lint-staged": {
"*.{js,jsx,css,md,json}": "prettier --write --cache",
"*.{ts,tsx}": [
"prettier --write --cache",
"eslint --fix --cache"
]
},
"overrides": {
"react-refresh": "0.11.0"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@solana/web3.js": "1.63.1",
"graphql-zeus": "^5.2.9",
"json-schema": "^0.4.0",
"prettier": "^2.8.4",
"react-refresh": "0.11.0",
"typescript": "^4.9.5",
"wrangler": "^2.10.0",
"zustand": "^4.3.5"
},
"engines": {
"node": "18.x",
"yarn": "^1.22.17"
},
"dependencies": {
"patch-package": "^6.5.0"
}
}