-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.31 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --exclude root --exclude @pianity/arsnap-wallet -vitp run build",
"build-wallet": "yarn workspaces foreach --exclude root -vitp run build",
"build-dev": "NODE_ENV=development yarn build",
"typecheck": "yarn workspaces foreach --exclude root -vip run typecheck",
"lint": "yarn workspaces foreach --exclude root -vip run lint",
"lint-errors": "yarn workspaces foreach --exclude root -vip run lint --quiet",
"lint-fix": "yarn workspaces foreach --exclude root -vip run lint:fix",
"check-versions": "yarn tsx scripts/check-versions.ts",
"create-release": "yarn tsx scripts/create-release.ts"
},
"dependencies": {
"@pianity/eslint-config": "0.0.2",
"@pianity/prettier-config": "0.0.1",
"@types/node": "17.0.45",
"commander": "9.5.0",
"eslint": "8.43.0",
"nodemon": "3.0.1",
"prettier": "2.8.8",
"tsx": "3.12.7",
"typescript": "4.9.5"
},
"packageManager": "yarn@3.2.0",
"resolutions": {
"@bundlr-network/client@0.7.4": "patch:@bundlr-network/client@npm:0.7.4#.yarn/patches/@bundlr-network-client-npm-0.7.4-626caac650.patch"
}
}