-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 993 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
{
"name": "grupo1_Turma4_Azur",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/softexrecifepe/grupo1_Turma4_Azur",
"author": "ramgund <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node ./src/index.ts",
"migration:generate": "typeorm-ts-node-commonjs -d ./src/data-source.ts migration:generate ./src/migrations/default",
"migration:run": "typeorm-ts-node-commonjs -d ./src/data-source.ts migration:run",
"build": "rm -rf ./dist && tsc",
"start": "node ./dist/index.js"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.5",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.3",
"nodemon": "^3.1.7",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.6.3"
}
}