forked from rally-dfs/token-bonding-curve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
46
{
"name": "@rally/token-bonding-curve",
"description": "A fork of Solana Program Library Token Swap that implements a linear token bonding curve type",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"homepage": "https://rally.io",
"keywords": [
"rally",
"anchor",
"solana",
"token-swap"
],
"repository": {
"type": "git",
"url": "https://github.com/rally-dfs/token-bonding-curve/"
},
"files": [],
"engines": {
"node": ">=10"
},
"dependencies": {},
"devDependencies": {
"@project-serum/anchor": "0.20.1",
"@solana/spl-token": "^0.1.8",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^15.0.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "anchor build",
"deploy": "anchor deploy",
"test": "NODE_ENV=test anchor test"
}
}