-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.75 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
{
"name": "waifu-bot",
"description": "Waifu Bot is multipurpose Discord Bot with Music that serves our server",
"repository": "https://github.com/Leomotors/waifu-bot",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": "^20.8",
"pnpm": "^9"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "rm -rf node_modules {apps,packages}/*/{.turbo,build,dist,node_modules,.svelte-kit}",
"build": "dotenv -v FORCE_COLOR=2 -- turbo run build --env-mode=loose",
"dev": "dotenv -v FORCE_COLOR=2 -- turbo run dev --env-mode=loose",
"lint": "FORCE_COLOR=2 turbo run lint",
"format": "FORCE_COLOR=2 turbo run format",
"start": "dotenv -v FORCE_COLOR=2 -- turbo run start --env-mode=loose",
"start:bot": "dotenv -v FORCE_COLOR=2 -- turbo run --filter=\"@waifu-bot/bot\" start",
"start:web": "dotenv -v FORCE_COLOR=2 -- turbo run --filter=\"@waifu-bot/web\" start",
"test": "FORCE_COLOR=2 turbo run test"
},
"devDependencies": {
"@leomotors/config": "^0.11.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.12",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.2"
},
"dependencies": {
"dotenv-cli": "^7.4.2",
"turbo": "^2.1.3"
},
"pnpm": {
"overrides": {
"discord-api-types": "^0.37.101"
}
}
}