-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 911 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 911 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
{
"name": "charisma",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --concurrency=40",
"generate": "turbo run generate",
"create-app": "./scripts/create-app.sh",
"create-package": "./scripts/create-package.sh",
"create-module": "./scripts/create-module.sh",
"create-service": "./scripts/create-service.sh",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"check-types": "turbo run check-types"
},
"devDependencies": {
"@turbo/gen": "^2.5.4",
"@types/node": "^24.0.14",
"prettier": "^3.6.2",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@10.5.2",
"engines": {
"node": ">=22.0.0"
}
}