-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 927 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 927 Bytes
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
{
"name": "jamal",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "env-cmd turbo run dev --parallel",
"lint": "turbo run lint",
"prisma:gen": "env-cmd yarn workspace @jamal/db run prisma db push",
"format": "prettier --write \"{packages,apps}/**/*.{ts,tsx,md,json}\"",
"prepare": "husky install",
"docker:build": "docker compose build",
"docker:push": "docker compose push",
"fix": "yarn-audit-fix"
},
"devDependencies": {
"@types/node": "^18.0.6",
"env-cmd": "^10.1.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.2.2",
"turbo": "latest",
"yarn-audit-fix": "^9.3.8"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "yarn@1.22.19",
"license": "MIT"
}