-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.95 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
{
"name": "checkout-api",
"version": "1.0.0",
"description": "This project implements a checkout API using Clean Architecture",
"repository": "https://github.com/jeanvcastro/checkout-api",
"author": "Jean Castro",
"license": "MIT",
"scripts": {
"dev": "tsx watch src/infra/http/app.ts",
"build": "rimraf ./dist && tsc --project tsconfig.build.json && tscpaths -p tsconfig.build.json -s ./src -o ./dist && cp -r src/infra/templates dist/infra/templates",
"start": "node dist/infra/http/app.js",
"queue": "node dist/infra/queue/worker.js",
"queue:dev": "tsx watch src/infra/queue/worker.ts",
"test": "vitest run",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"sequelize-cli": "^6.6.2",
"tscpaths": "^0.0.9",
"tsx": "^4.7.3",
"typescript": "*",
"vitest": "^1.5.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.564.0",
"@aws-sdk/client-ses": "^3.564.0",
"@bull-board/api": "^5.16.0",
"@bull-board/express": "^5.16.0",
"@bull-board/ui": "^5.16.0",
"axios": "^1.6.8",
"bullmq": "^5.7.5",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"mysql2": "^3.9.7",
"sequelize": "^6.37.3",
"ts-case-convert": "^2.0.7",
"winston": "^3.13.0",
"zod": "^3.23.4"
}
}