-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "lockdrop",
"version": "1.0.0",
"description": "Secure file sharing with password-protected links",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "ts-node-dev --respawn src/app.ts",
"css:build": "tailwindcss -i public/css/input.css -o public/css/app.css --minify",
"css:watch": "tailwindcss -i public/css/input.css -o public/css/app.css --watch"
},
"dependencies": {
"archiver": "^7.0.1",
"bcrypt": "^5.1.1",
"connect-session-sequelize": "^7.1.7",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.0",
"helmet": "^8.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.3",
"sequelize": "^6.37.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/bcrypt": "^5.0.2",
"@types/csurf": "^1.11.5",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.5",
"@types/uuid": "^10.0.0",
"tailwindcss": "^3.4.13",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}