-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 731 Bytes
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": "media-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ffmpeg": "^0.0.4",
"mysql2": "^3.6.5",
"redis": "^4.6.11",
"sequelize": "^6.35.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/express": "^4.17.21",
"@types/node": "^20.10.2",
"@types/sequelize": "^4.28.19",
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}