-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.05 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
{
"name": "bulk-export-server",
"version": "1.0.0",
"description": " A utility to test bulk data export",
"main": "./src/index.ts",
"scripts": {
"test": "jest --silent --runInBand",
"test:coverage": "jest --collectCoverage --silent --runInBand",
"test:watch": "jest --watchAll --runInBand",
"test:watch:coverage": "jest --watchAll --runInBand --collectCoverage",
"start": "node ./src/server/server.js",
"prettier": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"check": "npm run test && npm run lint && npm run prettier",
"db:setup": "node src/scripts/createCollections.js",
"db:delete": "node src/scripts/deleteCollections.js",
"db:reset": "npm run db:delete && npm run db:setup",
"upload-bundles": "node src/scripts/uploadPremadeBundles.js",
"parse-compartment-def": "node src/scripts/parseCompartmentDefinition.js",
"post-txn-bundles": "node src/scripts/postTransactionBundles.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projecttacoma/bulk-export-server.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/projecttacoma/bulk-export-server/issues"
},
"homepage": "https://github.com/projecttacoma/bulk-export-server#readme",
"dependencies": {
"@asymmetrik/fhir-qb": "^0.12.5",
"@asymmetrik/fhir-qb-mongo": "^0.12.3",
"@fastify/cors": "^9.0.1",
"@projecttacoma/node-fhir-server-core": "^2.2.8",
"axios": "^1.6.0",
"bee-queue": "^1.5.0",
"dotenv": "^10.0.0",
"fastify": "^4.27.0",
"fastify-plugin": "^3.0.0",
"mongodb": "^4.1.3",
"pino-pretty": "^7.1.0",
"supertest": "^6.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^16.11.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
}
}