-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "chicmoz",
"version": "1.0.0",
"repository": "[email protected]:aztlan-labs/chicmoz.git",
"license": "UNLICENSED",
"packageManager": "[email protected]",
"workspaces": [
"services/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-sort-json": "3.1.0",
"typescript": "5.2.2"
},
"scripts": {
"build:packages": "yarn workspaces foreach --parallel --all --topological-dev --verbose --include '@chicmoz-pkg/*' run build",
"lint:packages": "yarn workspaces foreach --parallel --all --topological-dev --verbose --include '@chicmoz-pkg/*' run lint",
"build": "yarn workspaces foreach --parallel --all --topological-dev --verbose run build",
"lint": "yarn workspaces foreach --parallel --all --topological-dev --verbose run lint",
"g:lint": "cd $INIT_CWD && eslint --fix",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
}
}