forked from coral-xyz/backpack
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.24 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
{
"name": "backpack",
"private": true,
"workspaces": [
"backend/workers/*",
"backend/native/*",
"examples/clients/*",
"examples",
"examples/xnft/*",
"packages/*",
"packages/blockchains/*",
"web"
],
"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:mobile": "env-cmd --silent turbo run start --filter=@coral-xyz/common... --filter=@coral-xyz/recoil... --filter=@coral-xyz/background... --filter=!examples",
"build:mobile": "env-cmd --silent turbo run build --filter=@coral-xyz/common... --filter=@coral-xyz/recoil... --filter=@coral-xyz/background... --filter=!examples",
"postinstall": "yarn-deduplicate --scopes @babel @mui @typescript-eslint @types && if [ -d \"packages/app-mobile\" ]; then patch-package && cd packages/app-mobile && patch-package ; fi"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"env-cmd": "^10.1.0",
"eslint": "^8.20.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"turbo": "^1.6.2",
"yarn-deduplicate": "^6.0.0"
},
"lint-staged": {
"*.{css,md,json}": "prettier --write --cache",
"*.{ts,tsx,js,jsx}": [
"prettier --write --cache"
]
},
"resolutions": {
"@solana/web3.js": "1.63.1",
"parcel": "2.7.0",
"prettier": "2.7.1",
"wrangler": "^2.1.9",
"typescript": "~4.9.3"
},
"engines": {
"node": "18.x",
"yarn": "^1.22.17"
},
"dependencies": {
"patch-package": "^6.5.0"
}
}