-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 730 Bytes
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
{
"name": "macroswap",
"author": "REGO350",
"version": "1.0.0",
"description": "My first Solana program!",
"license": "MIT",
"scripts": {
"build": "anchor build",
"test": "anchor test",
"script": "ts-node -r dotenv/config",
"start": "solana-test-validator"
},
"dependencies": {
"@project-serum/anchor": "^0.18.0",
"@project-serum/common": "^0.0.1-beta.3",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.30.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"mocha": "^9.0.3",
"ts-mocha": "^8.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
}
}