-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.17 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
{
"name": "hpapi",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"start": "npm run build && node .",
"dev": "tsx watch server.ts",
"vercel-build": "npm run build",
"test": "set NODE_OPTIONS=--experimental-vm-modules && jest"
},
"engines": {
"node": "24.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@treblle/express": "^0.0.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/supertest": "^7.2.1",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.4.11",
"tsx": "^4.23.1",
"typescript": "^5.9.3"
},
"type": "module",
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
}
}
}