-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 998 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 998 Bytes
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
{
"name": "revora-backend",
"version": "0.1.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"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}\""
},
"dependencies": {
"@stellar/stellar-sdk": "^14.5.0",
"@types/pg": "^8.16.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"jest": "^30.2.0",
"morgan": "^1.10.0",
"pg": "^8.19.0",
"stellar-sdk": "^13.3.0",
"ts-jest": "^29.4.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.9",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.14.0",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.0"
}
}