-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.87 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
{
"name": "semantask",
"version": "2.0.12",
"private": true,
"type": "module",
"packageManager": "pnpm@11.13.1",
"scripts": {
"dev": "turbo run dev --filter=./apps/* --filter=./packages/*",
"mobile": "pnpm --filter mobile run start:mobile",
"task-worker": "pnpm --filter @semantask/task-worker dev",
"build": "turbo run build --filter=./apps/* --filter=./packages/*",
"start": "turbo run start --filter=./apps/* --filter=./packages/*",
"lint": "turbo run lint --filter=./apps/* --filter=./packages/*",
"test": "turbo run test --filter=./apps/* --filter=./packages/*",
"clean": "turbo run clean",
"clean:artifacts": "find apps packages -type d -name node_modules -prune -o -type d -name dist -prune -exec rm -rf '{}' + && find apps packages -type d -name node_modules -prune -o -type d -name build -prune -exec rm -rf '{}' + && find apps packages -type d -name node_modules -prune -o -type d -name .next -prune -exec rm -rf '{}' + && rm -rf .turbo && find apps packages -type d -name node_modules -prune -o -type f -name '*.tsbuildinfo' -delete",
"clean:all": "pnpm run clean:artifacts && find . -type d -name node_modules -prune -exec rm -rf '{}' +",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/ci/sync-root-release-version.mjs",
"release": "echo \"Skipping npm publish for private repository\"",
"typecheck": "turbo run typecheck --filter=./apps/* --filter=./packages/*",
"seed:contacts": "tsx scripts/seed/contacts.ts",
"ci:verify-artifacts": "bash ./scripts/ci/verify-artifacts.sh",
"security:audit": "pnpm audit --prod --audit-level high"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"eslint": "^9",
"eslint-plugin-import": "^2.32.0",
"tsx": "^4.21.0",
"turbo": "^2.8.17",
"typescript": "^5.9.3"
}
}