-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "my_dex_project",
"version": "1.0.0",
"description": "",
"main": "decodeKey.js",
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"test": "ts-mocha -p tsconfig.json -t 1000000 -r ts-node/register -r tsconfig-paths/register 'tests/**/*.ts'",
"start": "node server.js"
},
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.93.1",
"axios": "^1.7.7",
"base58-js": "^2.0.0",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb": "^6.9.0",
"mongoose": "^8.6.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"chai": "^5.1.1",
"mocha": "^10.4.0",
"prettier": "^3.3.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2"
}
}