-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 977 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
{
"name": "deposit-withdraw",
"version": "1.0.0",
"private": true,
"description": "Deposit Withdraw",
"license": "MIT",
"author": "",
"scripts": {
"init-dev": "env ANCHOR_WALLET=$HOME/.config/solana/id.json env ANCHOR_PROVIDER_URL=https://api.devnet.solana.com ts-mocha -p ./tsconfig.json -t 1000000 js/init.ts",
"init-local": "env ANCHOR_WALLET=$HOME/.config/solana/id.json env ANCHOR_PROVIDER_URL=http://localhost:8899 ts-mocha -p ./tsconfig.json -t 1000000 js/init.ts",
"test": "env ANCHOR_WALLET=$HOME/.config/solana/id.json env ANCHOR_PROVIDER_URL=http://127.0.0.1:8899 ts-mocha -p ./tsconfig.json -t 1000000 tests/*.ts"
},
"dependencies": {
"@project-serum/anchor": "^0.18.2",
"@solana/spl-token": "^0.1.8"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
}
}