-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.22 KB
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
{
"name": "management_event_API",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:crab-rope/management_event_API.git",
"author": "Thadeu Castelo Branco Ramos <thadeucbr@gmail.com>",
"license": "MIT",
"scripts": {
"typeorm": "typeorm-ts-node-commonjs",
"prestart": "typeorm-ts-node-commonjs migration:create -n UserUpdateRole && typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
"start:dev": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/Rest/index.ts",
"start": "ts-node src/index.ts"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.8",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"typeorm": "0.3.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.10",
"ts-node": "10.7.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "4.5.2"
}
}