-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
42
43
44
{
"name": "TCC_API_Typescript",
"version": "1.0.0",
"main": "server.ts",
"repository": "https://github.com/GabrSobral/TCC_API_Typescript.git",
"author": "Sobraloser <Asgoth55@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"dev": "tsnd --inspect --respawn --transpile-only --ignore-watch node_modules src/server.ts",
"typeorm": "tsnd ./node_modules/typeorm/cli.js -f ./ormconfig"
},
"dependencies": {
"@vonage/server-sdk": "^2.11.3",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.26.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"googleapis": "^85.0.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.6.3",
"nodemailer-express-handlebars": "^4.0.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.3",
"@types/multer": "^1.4.6",
"@types/uuid": "^8.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}