-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "fastify-typescript",
"version": "1.0.0",
"description": "fastify + typescript",
"main": "index.js",
"author": "Hachemi Hamadi",
"license": "MIT",
"scripts": {
"start": "npm run build:prod && node dist/server.js",
"dev": "nodemon",
"build:prod": "swc src -d dist --source-maps --copy-files",
"build:dev": "swc src -d dist --source-maps --copy-files",
"check-types": "tsc --noemit",
"lint": "eslint --ignore-path .gitignore --ext .ts src/ && npm run check-types",
"lint:fix": "npm run lint --fix",
"generate-migrations": "drizzle-kit generate:pg",
"migrate": "ts-node src/database/migrate"
},
"dependencies": {
"@fastify/compress": "7.0.0",
"@fastify/cors": "9.0.1",
"@fastify/env": "4.3.0",
"@fastify/helmet": "11.1.1",
"@fastify/jwt": "8.0.0",
"@fastify/swagger": "8.14.0",
"@fastify/swagger-ui": "2.1.0",
"@fastify/type-provider-typebox": "4.0.0",
"@sequelize/core": "^7.0.0-alpha.36",
"@sinclair/typebox": "0.32.13",
"ajv-errors": "3.0.0",
"bcrypt": "5.1.1",
"drizzle-orm": "^0.29.3",
"fastify": "4.26.0",
"fastify-plugin": "4.5.1",
"pg": "^8.11.3",
"pino": "8.18.0",
"pino-pretty": "10.3.1"
},
"devDependencies": {
"@swc/cli": "0.1.62",
"@swc/core": "1.3.74",
"@swc/helpers": "0.5.1",
"@types/bcrypt": "5.0.0",
"@types/node": "20.4.6",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"drizzle-kit": "^0.20.14",
"eslint": "8.46.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.28.0",
"lint-staged": "13.2.3",
"nodemon": "3.0.1",
"prettier": "3.0.1",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"tsc-alias": "1.8.7",
"tsconfig-paths": "4.2.0",
"typescript": "5.1.6"
}
}