-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.61 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
54
55
{
"name": "skeleton-hexagonal-api-ts",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ./src/*",
"dev": "npx ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --debug ./src/index.ts",
"start": "npm run build && node dist/index.js",
"build": "rimraf ./dist && tsc && tsc-alias -p tsconfig.json"
},
"keywords": [],
"author": "José Mancilla",
"repository": {
"type": "git",
"url": "https://github.com/JoseLuis21/skeleton-hexagonal-api-ts.git"
},
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/node": "20.11.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "6.20.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"prettier": "3.2.4",
"prisma": "5.8.1",
"rimraf": "5.0.5",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.8.8",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.3"
},
"dependencies": {
"@fastify/cors": "8.5.0",
"@fastify/jwt": "8.0.0",
"@fastify/rate-limit": "9.1.0",
"@fastify/swagger": "8.14.0",
"@prisma/client": "5.8.1",
"@scalar/fastify-api-reference": "1.14.8",
"bcryptjs": "2.4.3",
"dotenv": "16.4.1",
"env-var": "7.4.1",
"fastify": "4.28.1",
"ioredis": "5.3.2",
"uuid": "^9.0.1",
"zod": "3.22.4"
}
}