-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "starboard",
"description": "A Discord Starboard Bot",
"author": "Ian Mitchell",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "turbo run clean",
"start": "turbo run start",
"debug": "turbo run debug",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"prettier": "turbo run prettier",
"lint": "turbo run lint",
"test": "turbo run test"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/node": "20.11.0",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "1.0.1",
"eslint-import-resolver-typescript": "3.6.1",
"prettier": "3.2.1",
"prisma": "5.8.0",
"ts-node": "10.9.2",
"turbo": "1.11.3",
"typescript": "5.3.3"
}
}