-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 857 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 857 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
{
"name": "scheduling-service",
"version": "1.0.0",
"description": "Node.js Restful CRUD API with Node.js, Express, TypeScript and MongoDB",
"main": "src/server.js",
"scripts": {
"dev": "tsc && nodemon build/server.js",
"test": "jest"
},
"keywords": [
"nodejs",
"express",
"typescript",
"rest",
"api",
"mongodb"
],
"author": "Mark",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^12.0.4",
"express": "^4.17.1",
"mongoose": "^5.8.10"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@types/node": "^18.8.1",
"@types/supertest": "^2.0.12",
"jest": "^29.1.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}