-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1001 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": "projeto",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx watch ./src/server.ts",
"build": "tsup src",
"start": "node ./dist/server.js",
"doc": "node ./src/swagger.js"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/swagger-ui-express": "^4.1.7",
"esbuild-plugin-html": "^1.0.0",
"sqlite3": "^5.1.7",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@sequelize/mysql": "^7.0.0-alpha.43",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.4",
"nodemailer": "^6.9.15",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3"
}
}