-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "hexagonal-architecture-typescript-service-skeleton",
"version": "1.0.0",
"description": "Skeleton for new typescript services based on hexagonal architecture",
"main": "src/index.js",
"scripts": {
"start": "node dist/src/main.js",
"start:dev": "tsnd --respawn src/main.ts",
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test jest --coverage",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"build": "npm run build:clean && npm run build:tsc",
"build:clean": "rimraf dist; exit 0",
"build:tsc": "tsc -p tsconfig.prod.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertHernandez/hexagonal-architecture-typescript-service-skeleton.git"
},
"keywords": [
"typescript",
"hexagonal architecture",
"skeleton"
],
"author": "alberthernandezdev@gmail.com",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.3.0"
},
"bugs": {
"url": "https://github.com/AlbertHernandez/hexagonal-architecture-typescript-service-skeleton/issues"
},
"homepage": "https://github.com/AlbertHernandez/hexagonal-architecture-typescript-service-skeleton#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.0.4",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.(js|ts)": [
"npm run lint:fix"
]
},
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2"
}
}