-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 854 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 854 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
{
"name": "class-management",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/index.ts",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "ts-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.9.2",
"migrate": "^2.0.0",
"mongodb": "^5.7.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/supertest": "^2.0.12",
"jest": "^29.6.3",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}