-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
{
"name": "nosana-secret-manager",
"version": "0.1.0",
"private": true,
"description": "",
"scripts": {
"dev": "nodemon index.ts --ignore secrets/",
"build": "tsc",
"start": "node dist/index.js",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix"
},
"dependencies": {
"@keyv/mongo": "2.1.8",
"@keyv/mysql": "1.5.1",
"@keyv/postgres": "1.4.1",
"@keyv/redis": "2.5.3",
"@keyv/sqlite": "3.6.3",
"@koa/cors": "4.0.0",
"@project-serum/anchor": "0.25.0",
"@solana/spl-token": "0.3.6",
"@solana/web3.js": "1.67.0",
"axios": "1.2.0",
"bs58": "5.0.0",
"dotenv": "16.0.3",
"fs": "0.0.1-security",
"jsonwebtoken": "8.5.1",
"keyv": "4.5.2",
"koa": "2.13.4",
"koa-bodyparser": "4.3.0",
"koa-router": "12.0.0",
"lodash": "4.17.21",
"tweetnacl": "1.0.3",
"uuid": "9.0.0",
"yup": "0.32.11"
},
"devDependencies": {
"@types/jsonwebtoken": "8.5.9",
"@types/koa": "2.13.5",
"@types/koa__cors": "3.3.0",
"@types/koa__router": "12.0.0",
"@types/koa-bodyparser": "4.3.9",
"@types/koa-router": "7.4.4",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.45.0",
"eslint": "8.28.0",
"nodemon": "2.0.20",
"prettier": "2.8.0",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}