-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.11 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.11 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
88
89
90
91
92
{
"name": "user",
"version": "1.0.0",
"description": "This README would normally document whatever steps are necessary to get your application up and running.",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"swagger-autogen": "NODE_ENV=development node src/swagger/swagger.mjs",
"dev": "NODE_ENV=development ts-node-dev --respawn --transpile-only --ignore node_modules src/index.ts",
"lint": "eslint . --ext js,ts",
"lint:fix": "eslint --fix . --ext js,ts",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"test": "dotenv -e .env.test -- jest --passWithNoTests --coverage --forceExit",
"test:watch": "dotenv -e .env.test jest --watch --coverage",
"test:unit": "jest --passWithNoTests --coverage -- --watch -c jest-unit-config.js",
"test:integration": "npm run prisma:generate && npm run prisma:seed && npm test -- -c jest-integration-config.js --runInBand",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:seed": "prisma db seed",
"prisma:format": "prisma format",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:destroy": "docker-compose down --volumes --remove-orphans"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.5.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/google-protobuf": "^3.15.7",
"@types/jsonwebtoken": "^9.0.3",
"@types/logger": "^0.0.2",
"@types/module-alias": "^2.0.2",
"@types/node": "^20.9.0",
"@types/node-cron": "^3.0.9",
"@types/nodemailer": "^6.4.11",
"@types/supertest": "^2.0.14",
"@types/swagger-ui-express": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"dotenv": "^16.3.1",
"eslint": "^7.8.1",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.12.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"module-alias": "^2.2.3",
"prisma-erd-generator": "^1.11.1",
"swagger-autogen": "^2.23.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@fastify/cors": "^8.4.0",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"@grpc/grpc-js": "^1.9.5",
"@grpc/proto-loader": "^0.7.10",
"@prisma/client": "^5.8.0",
"@sentry/cli": "^2.21.1",
"@sentry/node": "^7.73.0",
"@sentry/profiling-node": "^1.2.1",
"@types/jest": "^29.5.5",
"axios": "^1.5.1",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"fastify": "^4.24.3",
"jest": "^29.6.2",
"jsonwebtoken": "^9.0.2",
"logger": "^0.0.1",
"moment": "^2.30.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.5",
"prisma": "^5.3.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2",
"supertest": "^6.3.3",
"swagger-themes": "^1.2.30",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"yup": "^1.3.2"
}
}