-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
79 lines (79 loc) · 2.77 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
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
{
"name": "umbriel",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "tsnd --respawn --transpile-only --ignore-watch node_modules --exit-child --clear -r tsconfig-paths/register src/infra/http/server.ts",
"dev:worker": "tsnd --respawn --transpile-only --ignore-watch node_modules --exit-child --clear -r tsconfig-paths/register src/infra/queue/worker.ts",
"dev:kafka": "tsnd --respawn --transpile-only --ignore-watch node_modules --exit-child --clear -r tsconfig-paths/register src/infra/kafka/app.ts",
"dev:webhook": "tsnd --respawn --transpile-only --ignore-watch node_modules --exit-child --clear -r tsconfig-paths/register src/infra/sns-webhook/server.ts",
"start": "node dist/infra/http/server.js",
"lint": "eslint src --ext ts,tsx",
"test": "jest",
"test:watch": "jest --watch",
"make:usecase": "plop --plopfile ./.plop/usecase.ts",
"build": "babel src --extensions \".ts\" --out-dir dist --copy-files"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/node": "7.14.9",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.15.0",
"@babel/preset-typescript": "7.15.0",
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/dotenv-flow": "3.2.0",
"@types/express": "4.17.13",
"@types/html-to-text": "8.0.1",
"@types/inline-css": "3.0.1",
"@types/jest": "27.0.1",
"@types/jsonwebtoken": "8.5.5",
"@types/nodemailer": "6.4.4",
"@types/request": "2.48.7",
"@types/sns-validator": "0.3.1",
"@types/supertest": "2.0.11",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"jest": "27.3.1",
"pg": "8.7.1",
"plop": "2.7.4",
"prettier": "2.4.1",
"prisma": "3.0.2",
"supertest": "6.1.6",
"ts-jest": "27.0.7",
"ts-node-dev": "1.1.8",
"tsconfig-paths": "3.11.0",
"typescript": "4.4.3"
},
"dependencies": {
"@prisma/client": "3.0.2",
"aws-sdk": "2.978.0",
"bcryptjs": "2.4.3",
"bullmq": "1.40.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"dotenv-flow": "^3.2.0",
"express": "4.17.1",
"html-to-text": "8.0.0",
"inline-css": "^3.0.0",
"ioredis": "4.28.0",
"jsonwebtoken": "8.5.1",
"kafkajs": "^1.15.0",
"nodemailer": "6.7.0",
"request": "^2.88.2",
"sns-validator": "^0.3.4",
"uuid": "8.3.2"
}
}