-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "ddd-building-blocks",
"version": "1.0.0",
"description": "Domain-Driven Design tactical modeling components",
"engines": {
"node": ">=18.12",
"npm": ">=8.19"
},
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"start": "npm run build && node --require dotenv/config dist/index.js",
"start:dev": "ts-node-dev --require dotenv/config src/index.ts",
"test": "jest --collectCoverage",
"prepare": "[ ${CI} ] || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/HenriqueSilverio/ddd-building-blocks.git"
},
"author": "Henrique Silvério",
"license": "GPL-3.0",
"dependencies": {
"json-bigint": "^1.0.0",
"require-env": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.4.1",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^7.13.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.2"
}
}