-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
package.json
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": "e-commerce",
"author": "Nishant Kohli",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.10.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"shared": "yarn workspace @ecom-mern/shared lib:build",
"server": "yarn workspace ecom-mern-server dev",
"server:build": "yarn workspace ecom-mern-server build",
"server:start": "yarn workspace ecom-mern-server start",
"client": "yarn workspace ecom-mern-client dev",
"client:build": "yarn workspace ecom-mern-client build",
"client:start": "yarn workspace ecom-mern-client start",
"prepare": "husky",
"build-apps": "turbo build",
"run-apps": "turbo dev",
"prettier": "prettier --write * --ignore-unknown"
},
"lint-staged": {
"*.{ts,js,tsx,jsx,html,scss,css,yml,yaml}": [
"yarn run prettier"
]
},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"packageManager": "[email protected]"
}