-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 879 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
32
33
34
35
36
37
38
39
40
41
{
"name": "welcome_to_backend",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "nodemon --exec tsx ./src/main.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js ./test/"
},
"dependencies": {
"jsdom": "^26.1.0",
"nodemon": "^3.1.10"
},
"devDependencies": {
"jest": "^30.1.3",
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.0",
"@types/node": "^20.0.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}