-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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
{
"name": "devbot",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "dotenv -e .env turbo run build",
"dev": "dotenv -e .env turbo run dev --parallel",
"web": "dotenv -e .env yarn workspace web",
"bot": "dotenv -e .env yarn workspace bot",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"compose": "docker-compose -f docker-compose.yml up -d",
"compose-down": "docker-compose down",
"docker-rebuild": "bash ./scripts/rebuild.sh",
"docker-deploy": "bash ./scripts/deploy.sh",
"docker-clean": "bash ./scripts/clean.sh"
},
"devDependencies": {
"dotenv-cli": "latest",
"eslint-config-custom": "*",
"husky": "latest",
"prettier": "latest",
"pretty-quick": "latest",
"turbo": "^1.8.3"
},
"engines": {
"node": ">=18.12.0"
},
"dependencies": {},
"packageManager": "yarn@1.22.19"
}