forked from nathydre21/nepa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.8 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.8 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
{
"dependencies": {
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.5.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"rate-limit-redis": "^4.2.0",
"ioredis": "^5.3.2",
"helmet": "^7.1.0",
"cors": "^2.8.5",
"swagger-ui-express": "^5.0.0",
"multer": "^1.4.5-lts.1",
"@prisma/client": "^5.6.0",
"date-fns": "^2.30.0",
"axios": "^1.6.0"
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"speakeasy": "^2.0.0",
"qrcode": "^1.5.3",
"nodemailer": "^6.9.7",
"express-session": "^1.17.3",
"connect-redis": "^7.1.0",
"joi": "^17.11.0",
"uuid": "^9.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"@sentry/node": "^7.77.0",
"@sentry/tracing": "^7.77.0",
"cls-rtracer": "^2.6.0",
"performance-now": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.8.0",
"@types/cors": "^2.8.15",
"@types/multer": "^1.4.9",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/speakeasy": "^2.0.10",
"@types/qrcode": "^1.5.5",
"@types/nodemailer": "^6.4.14",
"@types/express-session": "^1.17.10",
"@types/uuid": "^9.0.7",
"@types/jest": "^29.5.5",
"@types/supertest": "^2.0.12",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-test-renderer": "^18.0.0",
"@testing-library/react": "^13.4.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/user-event": "^14.4.3",
"jest-environment-jsdom": "^29.7.0",
"typescript": "^5.2.2",
"prisma": "^5.6.0",
"ts-node": "^10.9.1",
"@types/axios": "^0.14.0"
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"supertest": "^6.3.3",
"jest-environment-node": "^29.7.0",
"@playwright/test": "^1.40.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@types/jest-environment-jsdom": "^29.5.1",
"@types/performance-now": "^2.0.2"
},
"scripts": {
"dev": "ts-node app.ts",
"build": "tsc",
"start": "node dist/app.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:unit": "jest tests/unit --watchAll=false",
"test:integration": "jest tests/integration --watchAll=false",
"test:e2e": "playwright test",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
"lint:check": "eslint . --ext .ts,.js,.tsx,.jsx",
"type-check": "tsc --noEmit"
}
}