-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.26 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.26 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
{
"name": "safeswap",
"version": "1.0.0",
"description": "Welcome to the **Web Marketplace with Escrow Contracts**, a decentralized platform for buying and selling products with escrowed payments. Powered by Stellar and integrated with the **Trustless Work API**, this marketplace offers a secure and trustless environment for transactions across various product categories.",
"main": "index.js",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"dev:frontend": "turbo run dev --filter=frontend",
"dev:backend": "turbo run dev --filter=backend",
"build:frontend": "turbo run build --filter=frontend",
"build:backend": "turbo run build --filter=backend",
"lint:frontend": "turbo run lint --filter=frontend",
"lint:backend": "turbo run lint --filter=backend",
"postinstall": "npm --prefix apps/backend run db:generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": ["apps/*"],
"packageManager": "npm@10.9.2",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/passport-jwt": "^4.0.1",
"lefthook": "^1.8.2",
"turbo": "^2.4.1"
},
"dependencies": {
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@stellar/freighter-api": "^3.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1"
}
}