-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 891 Bytes
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
{
"name": "ddd-patterns",
"version": "1.0.0",
"description": "Este repositório foi criado com o objetivo de fornecer um ambiente dedicado ao estudo e prática dos DDD Patterns, especificamente do módulo \"DDD: Modelagem Tática e Patterns\" oferecido pela plataforma FullCycle.",
"main": "index.js",
"scripts": {
"test": "npm run tsc -- --noEmit && jest",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.93",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/uuid": "^9.0.5",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.33.0",
"sequelize-typescript": "^2.1.5",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1"
}
}