-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "basic-ddd-project",
"version": "1.0.0",
"description": "a basic starter ddd project",
"main": "dist/main.js",
"license": "MIT",
"author": "4lessandrodev",
"scripts": {
"predev": "tsc",
"prestart": "tsc",
"start": "node ./dist/main.js",
"build": "tsc",
"test": "jest --runInBand",
"test:ci": "jest --runInBand --passWithNoTests",
"dev": "ts-node src/main.ts",
"prepare": "husky install",
"postinstall": "husky install",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.2",
"jest": "27.2.4",
"lint-staged": "^11.2.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.5.5"
},
"dependencies": {
"fastify": "3.21.6",
"jsonwebtoken": "^8.5.1",
"middie": "^5.3.0",
"module-alias": "^2.2.2",
"types-ddd": "^2.9.4"
},
"_moduleAliases": {
"@modules": "./dist/modules",
"@config": "./dist/config",
"@": "./dist"
}
}