-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.82 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
59
60
61
62
63
64
65
{
"name": "modmail",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"type": "module",
"bin": {
"dcd": "./dist/index.js"
},
"scripts": {
"start": "nodemon dist/index.js",
"dev": "concurrently --kill-others --prefix [{name}] --names bot,tsc,cleaner,db \"npm:start\" \"npm:build:watch\" \"npm:cleaner\" postgres",
"cleaner": "ts-cleaner --dist dist --watch",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm run test -- --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"author": "nullishamy",
"license": "OSL3",
"dependencies": {
"@prisma/client": "^4.6.0",
"discord.js": "^14.11.0",
"interval-conversions": "^1.4.0",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"pretty-format": "^29.5.0",
"prisma": "^4.14.1",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/deep-diff": "^1.0.2",
"@types/dotenv-safe": "^8.1.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^29.5.0",
"concurrently": "^7.6.0",
"dotenv-safe": "^8.2.0",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.4.1",
"nodemon": "^2.0.22",
"prettier": "2.8.7",
"ts-cleaner": "^1.0.5",
"ts-jest": "^29.1.0",
"tsconfig": "^7.0.0"
},
"lint-staged": {
"*.(ts|js)": [
"eslint --cache --fix",
"prettier --write"
]
}
}