-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 723 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 723 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
{
"name": "file_vault",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@supabase/supabase-js": "^2.50.2",
"body-parser": "^2.2.0",
"dotenv": "^16.6.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.1"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^1.4.13",
"@types/node": "^24.0.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}