-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "stellarsettle-api",
"version": "0.1.0",
"description": "Backend API for StellarSettle invoice financing platform",
"main": "dist/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"start": "node -r tsconfig-paths/register dist/index.js",
"test": "jest",
"lint": "eslint \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"db:migrate": "node -r ts-node/register ./node_modules/typeorm/cli.js migration:run -d src/config/data-source.ts",
"prepare": "husky"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"decimal.js": "^10.6.0",
"dotenv": "^16.3.1",
"express": "^5.2.1",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.1.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"sqlite3": "^5.1.7",
"stellar-sdk": "^11.2.0",
"typeorm": "^0.3.17",
"winston": "^3.11.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/decimal.js": "^0.0.32",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^2.1.0",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}