-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 KB
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
{
"name": "hexagonal-architecture",
"version": "1.0.0",
"description": "This is a todo app with a hexagonal architecture template",
"main": "src/app.js",
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/app.js",
"lint": "eslint . --ext .ts --fix --ignore-path .gitignore",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.7",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.1.1",
"nanoid": "^5.0.4",
"rimraf": "^5.0.5",
"valid-url": "^1.0.9"
}
}