-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.69 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "n4d-be",
"version": "0.0.1",
"description": "Need4Deed API",
"engines": {
"node": ">=22.0.0"
},
"type": "commonjs",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@swc/core": "^1.15.10",
"@swc/helpers": "^0.5.18",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@typescript-eslint/utils": "^8.46.2",
"@vitest/ui": "4.0.18",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"nodemon": "^3.1.10",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.18"
},
"dependencies": {
"@aws-sdk/client-sesv2": "^3.840.0",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/jwt": "^9.1.0",
"@fastify/multipart": "^9.3.0",
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"bcrypt": "^6.0.0",
"change-case": "4",
"class-validator": "^0.14.2",
"fastify": "^5.3.3",
"fastify-mailer": "^2.3.1",
"fastify-plugin": "^5.0.1",
"need4deed-sdk": "^0.0.80",
"nodemailer": "^7.0.4",
"pg": "^8.14.1",
"pino": "^10.3.1",
"pino-pretty": "^13.0.0",
"qs": "^6.15.0",
"reflect-metadata": "^0.2.2",
"typeorm": "0.3.24"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon",
"typeorm": "typeorm-ts-node-commonjs -d src/data/data-source.ts",
"migration:generate": "yarn typeorm migration:generate",
"migration:create": "yarn typeorm-ts-node-commonjs migration:create",
"migration:run": "yarn typeorm migration:run",
"migration:revert": "yarn typeorm migration:revert",
"migration:show": "yarn typeorm migration:show",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "yarn test run",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:ui": "yarn test --ui",
"prepare": "husky",
"what": "./get-json-field-value.sh package.json"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --ignore-pattern eslint.config.js"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}