-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "app_de_carona",
"version": "1.0.0",
"main": "src/main.ts",
"repository": "https://github.com/WWteodoro/AppDeCarona.git",
"author": "William Wallace <bostawwtr@outlook.com>",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start:prod": "node ./dist/main.js",
"start:dev": "ts-node-dev ./src/main.ts",
"create:db": "docker run -d --name carona -p 5433:5432 -e POSTGRES_PASSWORD=123456 postgres:13.5",
"seed": "ts-node-dev ./prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^9.0.7",
"bcrypt": "^5.1.1",
"date-fns": "^3.4.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.13",
"prisma": "^5.4.2",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/typescript": "^2.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}