-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "craig",
"homepage": "http://craig.chat/",
"license": "ISC",
"private": true,
"author": {
"name": "Snazzah",
"email": "[email protected]",
"url": "https://snazzah.com/"
},
"workspaces": [
"apps/bot",
"apps/dashboard",
"apps/download",
"apps/tasks"
],
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"lint:monorepo": "yarn manypkg check",
"sync": "yarn manypkg run bot sync",
"sync:dev": "yarn manypkg run bot sync:dev",
"run-job": "yarn manypkg run tasks run-job",
"prisma:generate": "prisma generate && yarn manypkg run bot prisma:generate && yarn manypkg run dashboard prisma:generate && yarn manypkg run tasks prisma:generate",
"prisma:deploy": "prisma migrate deploy",
"prisma:dev": "prisma migrate dev"
},
"repository": {
"type": "git",
"url": "https://github.com/CraigChat/craig"
},
"dependencies": {
"@manypkg/cli": "^0.19.2",
"dotenv-cli": "^7.4.1",
"eslint": "^8.20.0",
"eslint-config-snazzah": "^1.1.0",
"prisma": "^5.12.1",
"rimraf": "^3.0.2"
}
}