-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 910 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
30
31
32
33
34
35
{
"name": "node_solid_vitest",
"version": "1.0.0",
"description": "Node Solid Server is a project aimed at demonstrating how to implement testing using the Vitest framework in a TypeScript-based Node.js project following clean architecture principles.",
"main": "index.js",
"scripts": {
"test": "vitest"
},
"keywords": [
"server",
"node",
"express",
"typescript",
"SOLID principles",
"clean-architucture",
"Test",
"Vitest",
"Testing"
],
"author": "MuhdHanish",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"dependencies": {
"date-fns": "^3.6.0"
}
}