-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "filebridge-api",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"gen": "npx supabase gen types typescript --project-id ubggrvvgmfohlkcnwctf > database.types.ts",
"build": "rm -rf dist && tsc --outDir dist",
"start:local": "NODE_ENV=local npm run build && node dist/index.js",
"start:production": "NODE_ENV=production npm run build && node dist/index.js",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@supabase/supabase-js": "^2.48.1",
"@types/archiver": "^6.0.3",
"@types/multer": "^1.4.12",
"@types/qrcode": "^1.5.5",
"archiver": "^7.0.1",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"multer": "^1.4.5-lts.1",
"prettier": "^3.4.2",
"qrcode": "^1.5.4",
"ts-node": "^10.9.2",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}