-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 927 Bytes
/
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
{
"name": "messenger",
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"ui:dev": "pnpm --filter=ui run dev",
"ui:build": "pnpm --filter=ui run build",
"ui:build:staging": "pnpm --filter=ui run build:staging",
"ui:preview": "pnpm --filter=ui run preview",
"sdk:gen": "pnpm --filter=sdk run generate && pnpm lint:fix",
"lint:fix": "eslint --fix ./packages/**",
"cli": "ts-node ./packages/cli/src/index.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@types/bn.js": "^5.1.1",
"@types/bs58": "^4.0.1",
"@types/mocha": "^9.1.1",
"eslint": "^9.9.1",
"mocha": "^10.1.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.5.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/runtime",
"react",
"react-dom"
]
}
}
}