-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "backend-challenge",
"version": "1.0.0",
"main": "src/app/server.ts",
"repository": {
"url": "https://github.com/marcuuscardoso/backend-challenge"
},
"author": "marcuuscardoso <marcuus.cardoso@gmail.com.com>",
"license": "MIT",
"scripts": {
"build": "npx -y tsc",
"start": "node dist/app/server.js",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules src/app/server.ts"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.7",
"nodemailer": "^6.9.13",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.11",
"@types/nodemailer": "^6.4.15",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.42.0",
"globals": "^15.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}