-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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": "chapter-ii-aulas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --poll --transpile-only --ignore-watch node_modules ./src/shared/infra/http/server.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli",
"test": "jest",
"seed:admin": "ts-node-dev src/shared/infra/typeorm/seed/admin.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"csv-parse": "^4.16.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/multer": "^1.4.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.3.5"
}
}