-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "exness",
"private": true,
"workspaces": [
"packages/*",
"server"
],
"scripts": {
"test:unit": "jest -c tests/jest.config.ts --runInBand tests/unit",
"test:e2e:setup": "docker-compose -f tests/docker-compose.yml up -d && sleep 5 && bun run tests/setupDB.ts",
"test:e2e:cleanup": "docker-compose -f tests/docker-compose.yml down",
"test:e2e": "bun run test:e2e:setup && jest -c tests/jest.config.ts --runInBand tests/e2e; bun run test:e2e:cleanup"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.1",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"ioredis-mock": "^8.9.0",
"jest": "^30.1.3",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"ws": "^8.18.3"
},
"dependencies": {
"@prisma/client": "^6.15.0",
"child_process": "^1.0.2",
"dotenv": "^17.2.2",
"jsonwebtoken": "^9.0.2",
"path": "^0.12.7",
"prisma": "^6.15.0",
"uuid": "^13.0.0"
},
"trustedDependencies": [
"unrs-resolver"
]
}