-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 996 Bytes
/
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
{
"name": "simple-standup-bot",
"version": "0.3.2",
"description": "A dead Simple Standup Bot for Slack named Akira",
"engines": {
"node": ">=20"
},
"scripts": {
"ports": "turbo run dev --filter=localtunnel",
"clean": "turbo daemon clean && rm -rf node_modules",
"clean:workspaces": "turbo clean",
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev --filter=!localtunnel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:migrate": "turbo run migrate",
"db:generate": "turbo run generate",
"docker:build": "./build.sh",
"docker:start": "./start.sh"
},
"license": "MIT",
"dependencies": {
"turbo": "^1.10.14"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@turbo/gen": "^1.10.14",
"eslint": "^8.49.0",
"eslint-config-custom": "workspace:*",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4"
}
}