forked from 0xdevcollins/boundless-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "boundless-backend",
"version": "1.0.0",
"main": "app.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.0",
"multer": "^1.4.5-lts.2",
"mongoose": "^8.13.1",
"nodemailer": "^6.10.1",
"soroban-client": "^1.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.12",
"@types/node": "^22.15.3",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.13.14",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^8.0.0",
"lint-staged": "^15.5.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}