-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 883 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 883 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
32
{
"name": "cloudretail",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"api:docker:compose:up": "npm -w apps/api run docker:compose:up",
"api:lint": "npm -w apps/api run lint",
"api:prisma:generate": "npm -w apps/api run prisma:generate",
"api:prisma:studio": "npm -w apps/api run prisma:studio",
"api:start": "npm -w apps/api run start",
"format": "prettier --write .",
"lint": "npm-run-all -p api:lint ui:lint",
"prepare": "husky",
"start": "npm-run-all -p api:start ui:start",
"ui:lint": "npm -w apps/ui run lint",
"ui:start": "npm -w apps/ui run start"
},
"devDependencies": {
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}