-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "swiftchain-backend",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"seed": "ts-node src/seed.ts"
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"mongoose": "^7.0.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"@types/winston": "^2.4.4",
"nodemon": "^3.0.2",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@stellar/stellar-sdk": "13.1.0",
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "16.3.1",
"express": "4.18.2",
"express-rate-limit": "6.11.0",
"helmet": "7.1.0",
"http-status-codes": "2.3.0",
"jsonwebtoken": "9.0.2",
"mongoose": "7.6.3",
"socket.io": "4.7.2",
"uuid": "9.0.1",
"winston": "3.11.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "9.0.5",
"@types/mongoose": "5.11.97",
"@types/node": "20.10.0",
"@types/socket.io": "3.0.2",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"husky": "8.0.3",
"jest": "^30.4.2",
"lint-staged": "15.2.0",
"mongodb-memory-server": "9.1.6",
"nodemon": "3.0.2",
"prettier": "3.1.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node": "10.9.2",
"typescript": "5.2.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}