forked from GokiProtocol/walletkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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": "@gokiprotocol/walletkit-monorepo",
"version": "0.0.0",
"description": "Wallet connector modal for Solana dApps.",
"repository": "[email protected]:GokiProtocol/walletkit.git",
"author": "Goki Rajesh <[email protected]>",
"license": "GPL-3.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-private-property-in-object": "^7.17.12",
"@rushstack/eslint-patch": "^1.1.3",
"@saberhq/eslint-config": "^1.13.19",
"@saberhq/eslint-config-react": "^1.13.19",
"@saberhq/tsconfig": "^1.13.19",
"@types/babel__core": "^7.1.19",
"@yarnpkg/doctor": "^4.0.0-rc.6",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "^8.16.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lerna": "^4.0.0",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"typescript": "^4.7.2",
"webpack": "^5.72.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --exclude @moving/workspace -vpti run build",
"lint": "eslint --cache .",
"lint:ci": "eslint --cache . --max-warnings=0",
"typecheck": "tsc",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md,yml,yaml}": "prettier --write"
},
"packageManager": "[email protected]"
}