-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 915 Bytes
/
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
{
"name": "chawkbazar",
"version": "2.0.0",
"private": true,
"author": "jupiter",
"workspaces": [
"admin/*",
"shop"
],
"scripts": {
"clean": "yarn workspaces run rimraf \"{.next,node_modules}\" && rimraf node_modules",
"dev:shop-rest": "yarn workspace @chawkbazar/shop dev",
"build:shop-rest": "yarn workspace @chawkbazar/shop build",
"start:shop-rest": "yarn workspace @chawkbazar/shop start",
"dev:admin-rest": "yarn workspace @chawkbazar/admin-rest dev",
"build:admin-rest": "yarn workspace @chawkbazar/admin-rest build",
"start:admin-rest": "yarn workspace @chawkbazar/admin-rest start",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^6.0.0",
"prettier": "^2.2.1",
"lint-staged": "^11.0.0",
"rimraf": "^3.0.2"
},
"lint-staged": {
"*.{js,ts,tsx,md,css}": [
"prettier --trailing-comma es5 --write"
]
}
}