-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "aacc",
"private": true,
"workspaces": [
"apps/*",
"hooks/*",
"packages/*",
"recipes/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "rm -rf node_modules && rm -rf {apps,hooks,packages,recipes}/*/{node_modules,dist,.next,.turbo,.eslintcache}",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,jsx,tsx,md}'",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"tasks": "node scripts/tasks.mjs",
"generate": "npm run build -- --filter=plop-dir && plop"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.22.0",
"chalk": "^5.0.1",
"execa": "^5.1.1",
"globby": "^13.1.1",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"prettier": "^3.2.2",
"prompts": "^2.4.2",
"turbo": "^1.11.3",
"typescript": "~5.3.3"
},
"prettier": "./packages/prettier-config"
}