-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.14 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.14 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
{
"name": "trailapi",
"version": "1.0.0",
"description": "Professional API using Clean Architecture and TDD",
"license": "ISC",
"keywords": [
"clean architecture",
"clean code",
"tdd",
"ddd",
"solid",
"design patterns",
"node",
"typescript",
"jest"
],
"author": {
"name": "Kelvin Felix",
"email": "kelvin.felix2502@gmail.com",
"url": "https://github.com/KelvinFelix"
},
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "node -r dotenv/config dist/main",
"dev": "ts-node-dev --respawn --transpile-only --clear -r dotenv/config --inspect=0.0.0.0:9229 src/main",
"build": "npm run clean && tsc -p tsconfig-build.json",
"clean": "rimraf dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm t -- --watch",
"test:staged": "npm t -- --findRelatedTests",
"test:coverage": "npm t -- --coverage"
},
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.2",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"rimraf": "^3.0.2",
"typeorm": "0.2.29"
},
"devDependencies": {
"@jest-mock/express": "^1.4.5",
"@types/axios": "^0.9.36",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.7.13",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^29.7.0",
"jest-mock-extended": "^2.0.1",
"lint-staged": "^11.1.2",
"pg-mem": "^3.0.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"config": {
"node_version": "v20.17.0"
}
}