forked from coral-xyz/backpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"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",
"e2e": "env-cmd --silent turbo run e2e",
"clean": "npx rimraf {.,backend,examples,packages,node_modules}/**/{.parcel-cache,.turbo,build,dist,node_modules,yarn-error.log} packages/app-extension/dev",
"start:ext": "env-cmd turbo run start --filter=@coral-xyz/app-extension...",
"build:ext": "env-cmd turbo run build --filter=@coral-xyz/app-extension...",
"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": {
"env-cmd": "^10.1.0",
"eslint": "^8.31.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"turbo": "^1.6.2",
"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-refresh": "0.11.0",
"@solana/web3.js": "1.63.1",
"parcel": "2.7.0",
"prettier": "^2.8.1",
"wrangler": "^2.7.1",
"typescript": "~4.9.3"
},
"engines": {
"node": "18.x",
"yarn": "^1.22.17"
},
"dependencies": {
"patch-package": "^6.5.0"
}
}