forked from Navin-xmr/navin-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.89 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
61
62
{
"name": "navin-backend",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/main.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"seed": "tsx src/scripts/seed.ts",
"generate-api-key": "tsx src/scripts/generateApiKey.ts",
"worker:stellar": "tsx src/workers/stellar.worker.ts"
},
"dependencies": {
"@faker-js/faker": "^10.3.0",
"@stellar/stellar-sdk": "^14.5.0",
"@types/ioredis": "^4.28.10",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express-rate-limit": "^8.1.0",
"express": "^4.19.2",
"swagger-ui-express": "^5.0.1",
"bullmq": "^5.58.5",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.9.5",
"multer": "^2.0.2",
"socket.io": "^4.8.3",
"yamljs": "^0.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^22.10.2",
"@types/swagger-ui-express": "^4.1.8",
"@types/supertest": "^6.0.3",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"mongodb-memory-server": "^10.2.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}