forked from ChatSift/ModMail
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.95 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": "@chatsift/modmail",
"description": "✉️",
"packageManager": "[email protected]",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"author": {
"name": "DD",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/chatsift/modmail.git"
},
"bugs": {
"url": "https://github.com/chatsift/modmail/issues"
},
"homepage": "https://github.com/chatsift/modmail",
"scripts": {
"lint": "turbo run lint && prettier --check --plugin-search-dir=. .",
"build": "turbo run build",
"format": "prettier --write --plugin-search-dir=. .",
"prisma": "dotenv -e .env prisma",
"deploy-commands": "rimraf ./packages/bot/dist && turbo run --no-cache build --filter ./packages/bot && dotenv -e .env -v DEPLOY=true -- node --es-module-specifier-resolution=node --enable-source-maps ./packages/bot/dist/index.js",
"start-bot": "dotenv -e .env -- node --es-module-specifier-resolution=node --enable-source-maps ./packages/bot/dist/index.js",
"start-api": "dotenv -e .env -- node --es-module-specifier-resolution=node --enable-source-maps ./packages/api/dist/index.js",
"start": "dotenv -e .env -- yarn deploy-commands && yarn prisma migrate deploy && yarn start-bot",
"prepare": "is-ci || husky install",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"dotenv-cli": "^5.1.0",
"eslint": "^8.21.0",
"eslint-config-neon": "^0.1.33",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prisma": "^4.2.1",
"rimraf": "^3.0.2",
"turbo": "^1.4.3",
"typescript": "^4.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.tsx": [
"eslint --fix"
]
}
}