-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"packageManager": "pnpm@10.10.0",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --exec ts-node ./src/app.ts",
"build": "npx tsc",
"build-index": "node scripts/build-index.js",
"prod": "node dist/index.js",
"vercel-build": "echo hello"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@blockfrost/blockfrost-js": "^5.5.0",
"@supabase/supabase-js": "^2.39.7",
"axios": "^1.7.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"memjs": "^1.3.2",
"node-cron": "^3.0.3",
"nodemon": "^3.1.0",
"short-uuid": "^4.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/memjs": "^1.3.3",
"@types/node-cron": "^3.0.11",
"supabase": "^2.22.6"
}
}