-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 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
{
"name": "banking-backend",
"version": "1.0.0",
"description": "Banking - Express Typescript",
"main": "src/app.ts",
"scripts": {
"start": "node -r tsconfig-paths/register dist/src/app.js",
"dev": "node -r ts-node/register -r tsconfig-paths/register --inspect=0.0.0.0 ./src/app.ts",
"dev:watch": "nodemon",
"build": "tsc",
"test": "jest --no-cache --runInBand --detectOpenHandles",
"typeorm": "node -r ts-node/register -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/cors": "^2.8.8",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.21",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import-helpers": "^1.2.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"mock-amqplib": "^1.5.0",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"supertest": "6.2.2",
"ts-jest": "^26.4.4",
"ts-node": "10.8.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@adminjs/design-system": "=2.1.2",
"@adminjs/express": "=4.1.0",
"@adminjs/typeorm": "=2.0.2",
"@sentry/node": "^5.12.3",
"adminjs": "=5.7.3",
"amqplib": "^0.8.0",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"pg": "^8.7.1",
"pino": "^7.9.1",
"pino-pretty": "^7.5.4",
"react": "=16.13.1",
"react-dom": "=16.13.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.2.0",
"typeorm": "^0.2.41",
"zod": "^3.11.6"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
}
}