-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
39
40
41
42
43
44
45
{
"name": "devix",
"version": "1.0.0",
"description": "official-devix-apps",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "pnpm -r dev",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"build": "turbo run build",
"test": "turbo run test",
"backend:dev": "pnpm --filter backend dev",
"frontend:dev": "pnpm --filter frontend dev",
"backend:lint": "pnpm --filter backend lint",
"frontend:lint": "pnpm --filter frontend lint",
"backend:format": "pnpm --filter backend format",
"frontend:format": "pnpm --filter frontend format",
"postinstall": "husky install",
"commit": "git add . && cz"
},
"lint-staged": {
"**/*.{html,css,scss,less,json,js,jsx,ts,tsx,md,mdx}\"": [
"prettier --config .prettierrc.json --write \"**/*.{html,css,scss,less,json,js,jsx,ts,tsx,md,mdx}\""
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"devix",
"devixid",
"devixin"
],
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"turbo": "1.2.5"
}
}