-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.09 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.09 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"scripts": {
"start": "nodemon --watch './src/**/*.ts' --exec 'ts-node' src/server.ts",
"build": "tsc",
"postbuild": "cpy '**/*' '!**/*.ts' ../dist/ --cwd=src/ --no-overwrite --parents",
"debug": "export DEBUG=* && npm run start",
"test:local": "export DEBUG=* TESTING_LOCAL=1 && jest",
"test:serum": "export DEBUG=* TESTING_LOCAL=1 && jest ./e2e/serum",
"test:mango": "export DEBUG=* TESTING_LOCAL=1 && jest ./e2e/mango",
"test:dev": "export DEBUG=* TESTING_DEV=1 && jest",
"update": "yarn upgrade @dbricks/dbricks-ts @dbricks/dbricks-solend --latest --check-files"
},
"dependencies": {
"@blockworks-foundation/mango-client": "^3.0.18",
"@dbricks/dbricks-solend": "^0.0.6",
"@dbricks/dbricks-ts": "^0.0.64",
"@project-serum/anchor": "^0.17.1-beta.1",
"@project-serum/serum": "^0.13.58",
"@project-serum/swap": "^0.1.0-alpha.32",
"@quarryprotocol/quarry-sdk": "^1.8.2",
"@saberhq/anchor-contrib": "^1.3.14",
"@saberhq/solana-contrib": "^1.3.14",
"@saberhq/stableswap-sdk": "^1.3.12",
"@saberhq/token-utils": "^1.3.13",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.24.2",
"axios": "^0.21.4",
"bn.js": "^5.2.0",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"express-winston": "^4.2.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^27.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.1.1",
"lodash.mapvalues": "^4.6.0",
"nodemon": "^2.0.12",
"source-map-support": "^0.5.19",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
}
}