-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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": "clean_architecture",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc && tsc-alias",
"format:prettier": "prettier . --write",
"type-check": "tsc --noEmit",
"lint": "eslint . --fix",
"start": "node dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/express": "5.0.1",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "9.0.9",
"@types/morgan": "^1.9.10",
"@types/ms": "2.1.0",
"@types/node": "22.15.17",
"@types/pg": "8.15.1",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "10.9.2",
"tsx": "^4.19.4",
"typescript": "5.8.3",
"typescript-eslint": "^8.37.0"
},
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"bcryptjs": "3.0.2",
"dotenv": "16.5.0",
"env-var": "^7.5.0",
"envs": "0.1.6",
"express": "5.1.0",
"jsonwebtoken": "9.0.2",
"morgan": "^1.10.0",
"pg": "8.15.6",
"slonik": "^47.1.0",
"socket.io": "^4.8.1",
"tsc-alias": "^1.8.16",
"zod": "^3.25.67"
}
}