-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 998 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
35
{
"name": "oomi-ai",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"dev:docker": "docker-compose up --build",
"dev:clean": "docker-compose down -v && npm run clean",
"prisma:studio": "npm run -w packages/backend prisma studio",
"db:migrate": "npm run -w packages/backend prisma migrate deploy",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"turbo": "^1.13.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@types/amqplib": "^0.10.6",
"amqplib": "^0.10.5",
"date-fns": "^4.1.0"
}
}