forked from columk1/file-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.39 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.39 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "file-uploader",
"version": "1.0.0",
"description": "A folder management app with authenticated sessions and public sharing.",
"main": "dist/app.js",
"scripts": {
"prebuild": "pnpm run generate && pnpm run migrate",
"build": "tsc && pnpm run bundle && pnpm run copy",
"bundle": "npx rollup -c",
"clean": "rm -rf ./dist",
"copy": "cp -r ./src/views ./dist/",
"generate": "npx prisma generate",
"migrate": "npx prisma db push",
"start": "node dist/app.js",
"dev": "tsx watch --env-file=.env src/app.ts",
"debug": "DEBUG=express:* tsx watch src/app.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"file upload",
"folder management"
],
"author": "columk",
"license": "MIT",
"packageManager": "pnpm@9.1.3",
"dependencies": {
"@prisma/client": "^5.18.0",
"@quixo3/prisma-session-store": "^3.1.13",
"@shoelace-style/shoelace": "^2.16.0",
"@supabase/supabase-js": "^2.45.1",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"ejs": "^3.1.10",
"express": "^5.0.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"memory-cache": "^0.2.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/http-errors": "^2.0.4",
"@types/memory-cache": "^0.2.6",
"@types/method-override": "^0.0.35",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.12",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.11.6",
"base64-arraybuffer": "^1.0.2",
"module-alias": "^2.2.3",
"rollup": "^4.20.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-css-only": "^4.5.2",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"_moduleAliases": {
"@": "./dist"
}
}