-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 990 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 990 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
42
43
44
{
"name": "hoursreport",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "nodemon src/server.ts",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"axios": "^0.27.2",
"express": "^4.18.1",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/superagent": "^4.1.15",
"@types/supertest": "^2.0.12",
"jest": "^28.1.1",
"superagent": "^8.0.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}