-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 771 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "recontent",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"pre-commit": "lint-staged",
"lockfile:lint": "npx yarn-deduplicate --fail --list -s highest yarn.lock",
"lockfile:fix": "npx yarn-deduplicate -s highest yarn.lock",
"prepare": "husky",
"prettier:lint": "prettier -c .",
"prettier:fix": "prettier -w .",
"dev:studio": "yarn workspace @recontentapp/studio dev",
"dev:studio-app": "yarn workspace @recontentapp/studio-app dev",
"build:app": "yarn workspace @recontentapp/studio-app build && rm -rf packages/studio/public && cp -r packages/studio-app/dist packages/studio/public"
},
"devDependencies": {
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.3.1"
}
}