-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.67 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
55
56
57
58
{
"name": "@togethercrew.dev/db",
"version": "3.0.64",
"description": "All interactions with DB",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts",
"test": "jest --detectOpenHandles",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\" \"*.ts\" ",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RnDAO/tc-dbComm.git"
},
"author": "Behzad Rabiei & MagicPalm",
"license": "ISC",
"bugs": {
"url": "https://github.com/RnDAO/tc-dbComm/issues"
},
"homepage": "https://github.com/RnDAO/tc-dbComm#readme",
"dependencies": {
"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/mongoose-unique-validator": "^1.0.6",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"env-cmd": "^10.1.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"prettier": "2.8.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*"
]
}