-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-prototype",
"version": "0.0.1",
"description": "Node JS prototype for an patient intake platform",
"author": "Matheus Frizo <matheusfrizo@gmail.com>",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/MFrizo/node-prototype",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MFrizo/node-prototype.git"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/MFrizo/node-prototype/issues"
},
"keywords": [
"node",
"prototype",
"patient",
"intake",
"platform"
],
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/index.js",
"dev": "tsc -w & node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\""
},
"engines": {
"node": ">=24.13.0"
},
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"packageManager": "yarn@4.12.0",
"dependencies": {
"amqplib": "^0.10.9",
"express": "^5.2.1",
"mongodb": "^6.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@types/amqplib": "^0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"jest-util": "^30.2.0",
"mongodb-memory-server": "^10.1.3",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}