-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 841 Bytes
/
package.json
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": "shitpost",
"module": "index.ts",
"scripts": {
"start": "bun run src/index.ts",
"dev": "concurrently \"bun tailwindcss -i ./src/tailwind.input.css -o ./src/public/static/css/style.css --watch --minify\" \"bun run --watch src/index.ts\""
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "latest",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.16",
"concurrently": "^8.2.2",
"tailwindcss": "^3.4.10"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.10",
"express": "^4.19.2",
"mongoose": "^8.6.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15"
}
}