-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 KB
/
package.json
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
{
"name": "@amarjanica/demo-mongoose-typescript",
"version": "1.0.4",
"description": "",
"main": "dist/location.js",
"files": ["dist/**"],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "jest",
"lint": "eslint src/**/*",
"prettier": "prettier --write \"./(src|tests)/**/*.ts\"",
"tsc": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run prettier && npm run tsc"
},
"repository": "https://github.com/amarjanica/demo-mongoose-typescript.git",
"author": "Ana Bujan",
"license": "MIT",
"bugs": {
"url": "https://github.com/amarjanica/demo-mongoose-typescript/issues"
},
"homepage": "https://github.com/amarjanica/demo-mongoose-typescript#readme",
"dependencies": {
"mongoose": "^6.7.2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"mongodb-memory-server": "^8.10.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3"
}
}