-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nodetskeleton",
"version": "1.0.0",
"description": "A skeleton based to clean architecture for use typescript with NodeJs",
"main": "./dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn -- src/index.ts",
"full-test": "rm -rf coverage/* && npm run build && jest --coverage --collectCoverageFrom=src/**",
"test": "npm run build && jest --coverage --collectCoverageFrom=src/**",
"build": "rm -rf dist/* && tsc --sourceMap false",
"up:build": "docker-compose up -d --build",
"up": "docker-compose up -d",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"pretty-quick": "pretty-quick",
"pretty-check": "pretty-quick --check",
"pre-commit": "npm run lint && npm run pretty-quick --staged && npm run test",
"start": "node dist/index"
},
"repository": {
"type": "git",
"url": "https://github.com/harvic3/nodetskeleton"
},
"keywords": [
"node",
"ts",
"skeleton",
"nodejs",
"typescript",
"template",
"clean architecture"
],
"author": "Vickodev<Victor A. Higuita C.>",
"license": "MIT",
"homepage": "https://github.com/harvic3/nodetskeleton/blob/master/README.md",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/luxon": "^2.0.7",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^2.0.4",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14",
"npm": ">=6.12"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"fast-glob": "^3.2.7",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.1.1",
"mapper-tsk": "^2.0.0",
"node-fetch": "^3.1.0",
"resources-tsk": "^2.0.0",
"result-tsk": "^2.0.0",
"uuid": "^8.3.2",
"validator-tsk": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
}
}