-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "admin-panel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/server.js",
"build": "rimraf dist && npx tsc",
"dev": "tsx watch ./src/server.ts",
"make:migration": "tsx src/database/commands/generateMigrationFile.ts",
"make:module": "tsx src/commands/generateModule.ts",
"make:repository": "tsx src/commands/generateRepository.ts",
"make:service": "tsx src/commands/generateService.ts",
"make:schema": "tsx src/commands/generateSchema.ts",
"database:generate-types": "kysely-codegen",
"database:migrate": "tsx src/database/commands/runMigrations.ts",
"database:seed": "tsx src/database/seeders/databaseSeeder.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/cors": "^9.0.1",
"@fastify/env": "^4.3.0",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^8.0.0",
"@fastify/multipart": "^8.1.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/sensible": "^5.5.0",
"@fastify/static": "^7.0.1",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/type-provider-typebox": "^4.0.0",
"@fastify/under-pressure": "^8.3.0",
"@fastify/view": "^9.1.0",
"@fastify/websocket": "^10.0.1",
"@inquirer/prompts": "^4.1.0",
"@sinclair/typebox": "^0.32.15",
"@types/bcrypt": "^5.0.2",
"@types/nodemailer": "^6.4.15",
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"app-root-path": "^3.1.0",
"bcrypt": "^5.1.1",
"close-with-grace": "^1.3.0",
"desm": "^1.3.1",
"ejs": "^3.1.10",
"fastify": "^4.26.1",
"handlebars": "^4.7.8",
"kysely": "^0.27.2",
"moment": "^2.30.1",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.13",
"pg": "^8.11.3",
"rimraf": "^5.0.5",
"undici": "^6.9.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/ejs": "^3.1.5",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.2",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.32",
"fastify-tsconfig": "^2.0.0",
"kysely-codegen": "^0.11.0",
"pino-pretty": "^10.3.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}