forked from StellarEdu/StellarEduPay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "stellaredupay",
"version": "1.0.0",
"scripts": {
"test": "jest --testPathPattern=tests/ --forceExit",
"test:e2e": "jest tests/e2e/ --forceExit --runInBand --testPathIgnorePatterns=/node_modules/",
"test:integration": "cross-env RUN_INTEGRATION_TESTS=true jest tests/stellar.integration.test.js --forceExit",
"test:docker-healthcheck": "cross-env RUN_DOCKER_COMPOSE_HEALTHCHECK_TESTS=true jest tests/dockerComposeHealthCheck.test.js --forceExit",
"seed": "node scripts/seed-test-data.js"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"dotenv": "^17.3.1",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"mongodb-memory-server": "^9.1.1",
"mongoose": "^9.3.1",
"prom-client": "^15.1.3",
"speakeasy": "^2.0.0",
"supertest": "^6.3.0"
},
"jest": {
"moduleDirectories": [
"node_modules",
"backend/node_modules"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!(@stellar/stellar-sdk)/)"
],
"setupFilesAfterEnv": [
"./tests/setup/blockRealHttp.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"tests/stellar\\.integration\\.test\\.js",
"tests/integration/",
"tests/e2e/"
]
},
"dependencies": {
"bullmq": "^5.71.1",
"ioredis": "^5.10.1",
"node-cache": "^5.1.2"
}
}