-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.63 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "DEMO",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=dev node --watch -r ts-node/register ./src/index.ts",
"build": "rimraf ./dist && tsc && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky",
"test": "NODE_ENV=test jest",
"test:e2e": "NODE_ENV=e2e-test jest --config ./tests/e2e-specs/e2e.config.json --forceExit",
"test:architect": "NODE_ENV=test jest --config ./tests/architect/jest-architect.json",
"seed": "pnpm build && docker compose exec api node dist/seeders/index.js",
"seed:refresh": "pnpm build && docker compose exec api node dist/seeders/index.js --refresh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@typegoose/typegoose": "^12.4.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/mjml": "^4.7.4",
"@types/nodemailer": "^6.4.15",
"@types/supertest": "^6.0.2",
"body-parser": "^1.20.2",
"bullmq": "^5.8.4",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-http-context2": "^1.0.0",
"express-jsdoc-swagger": "^1.8.0",
"express-rate-limit": "^7.4.0",
"faiss-node": "^0.5.1",
"firebase-admin": "^12.2.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mjml": "^4.15.3",
"mongodb-memory-server": "^9.2.0",
"morgan": "^1.10.0",
"nanoid": "^3.3.7",
"nodemailer": "^6.9.14",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.1.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"dotenv": "^16.4.5",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lit": "^2.6.1",
"mongoose": "^8.3.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^7.7.1"
}
}