-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.55 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "gofer-engine",
"version": "1.3.0",
"description": "An HL7 Interface Engine for Healthcare Interoperability built for Node.JS. Making interoperability a menial task.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json && npm run copy:cjs",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json && npm run copy:esm",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"copy:cjs": "cp ./src/api/schema.graphql ./dist/cjs/api/schema.graphql",
"copy:esm": "cp ./src/api/schema.graphql ./dist/esm/api/schema.graphql",
"clean": "node tools/cleanup",
"lint": "eslint",
"package": "npm run build && npm pack",
"postinstall": "husky install",
"test": "jest",
"dev": "nodemon -r dotenv/config src/example/server.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/amaster507/gofer.git"
},
"keywords": [
"gofer",
"Healthcare",
"HL7",
"Interface",
"Interoperability",
"Engine",
"Node.JS",
"TypeScript"
],
"author": "amaster507",
"license": "ISC",
"bugs": {
"url": "https://github.com/amaster507/gofer/issues"
},
"homepage": "https://github.com/amaster507/gofer#readme",
"dependencies": {
"gofer-queue": "^1.0.0",
"gofer-stores": "^1.1.0",
"graphql": "^16.6.0",
"handelse": "^1.0.5",
"ts-hl7": "^1.0.0",
"type-fest": "^3.10.0",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@types/better-queue": "^3.8.3",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-dev-server": "^6.2.0",
"nodemon": "^2.0.20",
"pinst": "^3.0.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}