-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 888 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
32
33
34
{
"name": "227heardle-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/cors": "^2.8.13",
"@types/cron": "^2.0.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/ffmpeg.js": "^3.1.3",
"@types/md5": "^2.3.2",
"@types/node": "^18.15.11",
"better-sqlite3": "^8.2.0",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"cron": "^2.3.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"ffmpeg.js": "^4.2.9003",
"js-ffmpeg": "^0.0.38",
"luxon": "^3.3.0",
"md5": "^2.3.0",
"nodemon": "^2.0.22",
"typescript": "^5.0.3",
"yt-dlp-wrap": "^2.3.11"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "tsc && concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\""
}
}