-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "kat-gov",
"type": "module",
"main": "dist/index.js",
"devDependencies": {
"@prisma/client": "^6.1.0",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.8.1",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"@types/websocket": "^1.0.10",
"prisma": "^6.1.0",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"@types/axios": "^0.14.4",
"@types/jest": "^29.5.14",
"@types/minimist": "^1.2.5",
"@types/pino": "^7.0.4",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"axios": "^1.7.7",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jest": "^29.7.0",
"minimist": "^1.2.8",
"node-cron": "^3.0.3",
"ofetch": "^1.4.1",
"pg": "^8.13.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"websocket": "^1.0.35"
},
"scripts": {
"test": "jest",
"prisma:pull": "bun run scripts/prisma-pull.ts",
"prisma:generate": "bunx prisma generate",
"prisma:studio": "bunx prisma studio"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/src/tests/**/*.test.ts"
]
}
}