forked from galnir/Master-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "master-bot-mono",
"version": "1.0.0",
"private": true,
"description": "[![image](https://img.shields.io/badge/language-typescript-blue)](https://www.typescriptlang.org) [![image](https://img.shields.io/badge/node-%3E%3D%2016.0.0-blue)](https://nodejs.org/)",
"repository": {
"type": "git",
"url": "git+https://github.com/galnir/Master-Bot.git"
},
"scripts": {
"dev": "npm run copy-env && concurrently \"npm run dev:dashboard\" \"npm run dev:bot\"",
"copy-env": "cpy .env ./packages/dashboard",
"dev:bot": "npm run dev --prefix packages/bot",
"dev:dashboard": "npm run dev --prefix packages/dashboard",
"clean": "rm -rf node_modules/ packages/dashboard/node_modules/ packages/dashboard/.next/ packages/bot/node_modules/ packages/bot/dist/",
"clean-i": "npm run clean && npm install",
"postinstall": "npx prisma db push"
},
"workspaces": [
"packages/api",
"packages/node",
"packages/react",
"packages/bot",
"packages/dashboard"
],
"author": "Nir Gal",
"license": "ISC",
"bugs": {
"url": "https://github.com/galnir/Master-Bot/issues"
},
"homepage": "https://github.com/galnir/Master-Bot#readme",
"dependencies": {
"@prisma/client": "^4.8.1",
"@trpc/client": "^10.1.0",
"@trpc/next": "^10.1.0",
"@trpc/react-query": "^10.1.0",
"@trpc/server": "^10.1.0",
"concurrently": "^7.3.0",
"cpy-cli": "^4.2.0",
"superjson": "^1.9.1",
"zod": "^3.18.0"
},
"devDependencies": {
"prisma": "^4.8.1",
"typescript": "^4.7.4"
}
}