forked from LeonardoLeiteMeira/template-backend-nodeTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 971 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 971 Bytes
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
{
"name": "template-backend-nodeTS",
"version": "1",
"description": "Template para backend NodeTS para a Commit Jr",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn tsc && node build/index.js",
"typeorm": "npx ts-node ./node_modules/typeorm/cli.js",
"dev":"ts-node-dev --respawn --transpile-only --inspect=0.0.0.0:7001 --exit-child --respawn src/server.ts"
},
"dependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.9",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.5",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typeorm": "^0.2.29",
"typescript": "^4.0.5",
"uuid": "^8.3.1"
}
}