-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 908 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
32
33
34
35
36
37
38
{
"name": "mozu-fe",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"start": "node select.js",
"admin": "yarn workspaces admin",
"student": "yarn workspaces student",
"ui": "yarn workspaces ui",
"postinstall": "husky install",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --cache",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"husky": "^8.0.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"typescript": "5.5.4"
},
"dependencies": {
"inquirer": "^12.3.0"
}
}