-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 764 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 764 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
{
"name": "mongoose-typescript-example",
"version": "1.0.0",
"description": "Strongly typed models with Mongoose and TypeScript",
"main": "src/index.ts",
"author": "Tom Nagle",
"scripts": {
"dev": "nodemon",
"test": "jest"
},
"license": "MIT",
"private": false,
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"mongoose": "^5.9.25",
"prettier": "^2.0.5"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/jest": "^26.0.5",
"@types/mongoose": "^5.7.32",
"jest": "^26.1.0",
"jest-environment-node": "^26.1.0",
"mongodb-memory-server": "^6.2.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.5.4",
"typescript": "^4.0.5"
}
}