forked from TogetherCrew/mongo-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "tc_dbcomm",
"version": "1.0.0",
"description": "All interactions with DB",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"start": "node ./lib/index.js",
"dev": "nodemon ./src/magic.ts",
"test": "jest --detectOpenHandles",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Behzad-rabiei/tc-dbComm.git"
},
"author": "Behzad Rabiei",
"license": "ISC",
"bugs": {
"url": "https://github.com/Behzad-rabiei/tc-dbComm/issues"
},
"homepage": "https://github.com/Behzad-rabiei/tc-dbComm#readme",
"dependencies": {
"@types/mongoose-unique-validator": "^1.0.6",
"discord.js": "^14.7.1",
"joi": "^17.7.0",
"moment": "^2.29.4",
"mongoose": "^6.8.1",
"mongoose-unique-validator": "^3.1.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"env-cmd": "^10.1.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*"
]
}