forked from RevoraOrg/Revora-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "revora-backend",
"version": "0.1.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"migrate": "node src/db/migrate.js",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test": "jest",
"test:coverage": "jest --coverage --runInBand"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.16.0",
"@types/swagger-ui-express": "^4.1.8",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.22.1",
"jest": "^30.2.0",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.0",
"pg": "^8.19.0",
"stellar-sdk": "^13.3.0",
"ts-jest": "^29.4.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.9",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.14.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.0"
}
}