-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
{
"name": "project-worship-api",
"version": "1.0.11",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently --kill-others \"nodemon --exec ts-node server/src/index.ts\" \"cd client && npm run dev\"",
"prod": "concurrently --kill-others \"nodemon --exec ts-node server/src/index.ts\" \"cd client && npm run build\"",
"backend-dev": "tsc && nodemon --exec ts-node server/src/index.ts",
"backend-prod": "tsc && node build/src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/multer": "^1.4.7",
"@types/node": "^18.8.0",
"@types/uuid": "^8.3.4",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"ffmpeg-static": "^5.1.0",
"multer": "^1.4.5-lts.1",
"node-dependency-injection": "^3.0.3",
"sharp": "^0.31.3",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.1",
"uuid": "^9.0.0"
}
}