-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 948 Bytes
/
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
{
"name": "rocketseat-nodejs-class04-clean-ddd",
"version": "1.0.0",
"description": "Domain-driven Design (DDD) is a software development approach that emphasizes collaboration between technical experts and domain experts to build complex systems. It focuses on aligning the design and implementation of the system with the core business domain.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^22.9.1",
"eslint": "^8.57.1",
"eslint-plugin-vitest-globals": "^1.5.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
},
"dependencies": {
"dayjs": "^1.11.13"
}
}