-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.02 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "empathyapi",
"version": "1.0.0",
"description": "Api for PATH - A road to empathy",
"main": "index.js",
"author": "Vinicios Engelage",
"license": "MIT",
"scripts": {
"start": "node ./dist/shared/infra/http/server.js",
"start:queue": "node ./dist/shared/infra/http/queue.js",
"start:migrations": "node ./node_modules/typeorm/cli migration:run",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn -r tsconfig-paths/register src/shared/infra/http/server.ts",
"queue": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn -r tsconfig-paths/register src/shared/infra/http/queue.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli",
"seed:admin": "ts-node-dev -r tsconfig-paths/register src/shared/infra/typeorm/seeds/admin.ts",
"seed:professional": "ts-node-dev -r tsconfig-paths/register src/shared/infra/typeorm/seeds/professional.ts",
"seed": "yarn seed:admin && yarn seed:professional"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bree": "^9.0.1",
"bull": "^4.8.4",
"cloudinary": "^1.30.0",
"cors": "^2.8.5",
"dayjs": "^1.11.3",
"dotenv": "^16.0.1",
"expo-server-sdk": "^3.6.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"firebase-admin": "^11.0.0",
"handlebars": "^4.7.7",
"i18next": "^21.8.1",
"jsonwebtoken": "^8.5.1",
"modern-async": "^1.1.2",
"multer": "^1.4.4",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.7.5",
"pg": "^8.7.3",
"pm2": "^5.2.0",
"redis": "^4.1.0",
"reflect-metadata": "^0.1.13",
"streamifier": "^0.1.1",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.34",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/node": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.8",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^4.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-node": "^0.0.1-security",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
}
}