-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 960 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
35
36
37
38
39
40
41
{
"name": "backend",
"version": "1.0.0",
"engines": {
"node": "17.x"
},
"description": "",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc",
"frontend::build": "cp ../frontend/dist/* ./public",
"dev": "ts-node-dev src/server.ts",
"swagger": "tsoa spec"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.20",
"@types/swagger-ui-express": "^4.1.3",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.14.1",
"typeorm": "^0.2.43"
}
}