forked from akordavid373/sealed-auction-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "stellar-sealed-bid-auction",
"version": "1.0.0",
"description": "Private-Input Sealed-Bid Auction System on Stellar Blockchain",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"build-contract": "cd contracts && cargo build --target wasm32-unknown-unknown --release",
"deploy-contract": "node scripts/deploy-stellar.js",
"test-contract": "cd contracts && cargo test",
"install-stellar": "soroban install",
"node-stellar": "soroban node"
},
"dependencies": {
"@sentry/node": "^7.120.4",
"@stellar/stellar-sdk": "^15.0.1",
"ajv": "^8.12.0",
"bcrypt": "^5.1.0",
"better-sqlite3": "^12.8.0",
"compression": "^1.7.4",
"cors": "^2.8.6",
"crypto": "^1.0.1",
"dotenv": "^16.6.1",
"elastic-apm-node": "^4.15.0",
"express": "^4.22.1",
"express-rate-limit": "^6.11.2",
"express-session": "^1.18.1",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.3",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"rate-limiter-flexible": "^4.0.1",
"socket.io": "^4.8.3",
"soroban-client": "^0.9.0",
"stellar-sdk": "^13.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1"
},
"keywords": [
"auction",
"sealed-bid",
"private",
"secure",
"blockchain",
"stellar",
"smart-contracts",
"soroban",
"rust"
],
"author": "Cascade AI",
"license": "MIT"
}