-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "node-procedural-ddd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:watch": "pnpm tsnd -r tsconfig-paths/register --respawn src/app.ts",
"dev": "pnpm ts-node src/app.ts",
"build": "tsc",
"prod": "UV_THREADPOOL_SIZE=128; NODE_ENV=production node dist/index.js",
"lint": "pnpm eslint ./src",
"lint:fix": "pnpm prettier . --write",
"test": "pnpm jest",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"fastify": "^4.21.0",
"jsonwebtoken": "^9.0.1",
"module-alias": "^2.2.3",
"pg": "^8.11.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.31.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/pg": "^8.10.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@infrastructure": "dist/infrastructure",
"@api": "dist/api"
}
}