forked from SouJunior/motor-vagas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
44
45
46
47
48
{
"name": "chargeit-backend",
"version": "1.0.0",
"description": "ChargeIt backend repository",
"main": "index.js",
"config": {
"name": "migrationName"
},
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"orm:create": "npx typeorm migration:create",
"orm:run": "npm run typeorm -- migration:run -d ./src/data-source.ts",
"orm:generate": "npm run typeorm -- migration:generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/swagger-ui-express": "^4.1.6",
"ts-node": "^10.9.1",
"typeorm": "^0.3.19",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.6",
"@types/selenium-webdriver": "^4.1.21",
"@types/yargs": "^17.0.32",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"selenium-webdriver": "^4.18.1",
"swagger-ui-express": "^5.0.1",
"ts-node-dev": "^2.0.0",
"tsyringe": "^4.8.0",
"typeorm": "0.3.19",
"uuid": "^9.0.1"
}
}