forked from solflare-wallet/utl-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
47
{
"name": "@solflare-wallet/utl-api",
"version": "0.0.1",
"scripts": {
"start:api": "ts-node src/api.ts",
"dev:api": "nodemon src/api.ts",
"start:cron": "ts-node src/cron.ts",
"dev:cron": "nodemon src/cron.ts",
"test": "jest",
"test:detect": "jest --detectOpenHandles"
},
"author": "Solflare Developers <[email protected]>",
"license": "ISC",
"dependencies": {
"@google-cloud/logging-winston": "^4.2.3",
"@solana/web3.js": "^1.42.0",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"axios": "^0.27.2",
"cors": "^2.8.5",
"cron": "^2.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"winston": "^3.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.6.2"
}
}