-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 967 Bytes
/
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
{
"name": "clean-architecture",
"version": "1.0.0",
"description": "Clean Architecture",
"scripts": {
"build": "tsc --traceResolution",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"testWatch": "tsc && jest --watch --coverage dist/",
"main": "tsnd --respawn src/main.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.17.3",
"pg-promise": "^10.11.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"engines": {
"node": ">=16.0.0"
}
}