-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"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 .",
"build": "turbo run build",
"format": "prettier --write .",
"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 --enable-source-maps ./packages/bot/dist/index.js",
"start-bot": "dotenv -e .env -- node --enable-source-maps ./packages/bot/dist/index.js",
"start-api": "dotenv -e .env -- node --enable-source-maps ./packages/api/dist/index.js",
"prepare": "is-ci || husky install",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-angular": "^18.1.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.52.0",
"eslint-config-neon": "0.1.54",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"prisma": "^5.5.2",
"rimraf": "^5.0.5",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.tsx": [
"eslint --fix"
]
}
}