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
31 lines (31 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"name": "stellaredupay",
"version": "1.0.0",
"scripts": {
"test": "jest --testPathPattern=tests/ --forceExit",
"test:integration": "cross-env RUN_INTEGRATION_TESTS=true jest tests/stellar.integration.test.js --forceExit",
"seed": "node scripts/seed-test-data.js"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^17.3.1",
"jest": "^29.0.0",
"mongoose": "^9.3.1",
"supertest": "^6.3.0"
},
"jest": {
"moduleDirectories": [
"node_modules",
"backend/node_modules"
],
"testPathIgnorePatterns": [
"/node_modules/",
"tests/stellar\\.integration\\.test\\.js"
]
},
"dependencies": {
"bullmq": "^5.71.1",
"ioredis": "^5.10.1",
"node-cache": "^5.1.2"
}
}