-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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": "jalyk",
"description": "CMS",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"predev": "docker compose up -d --wait",
"dev": "node --env-file-if-exists=.env --env-file-if-exists=.env.development --import tsx scripts/dev.ts",
"db:up": "docker compose up -d --wait",
"db:down": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d --wait",
"format": "prettier --write .",
"lint": "eslint .",
"build:packages": "pnpm --filter @jalyk/schema --filter @jalyk/contract --filter @jalyk/ui --filter @jalyk/studio --filter @jalyk/client build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build:packages && changeset publish"
},
"keywords": [
"cms"
],
"license": "ISC",
"author": "piscopancer",
"packageManager": "pnpm@10.11.1",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@jalyk/auth": "workspace:*",
"@jalyk/core": "workspace:*",
"@jalyk/db": "workspace:*",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"turbo": "^2.10.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
}
}