-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 971 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
39
40
41
{
"name": "@mobouzer/monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/danshilm/MoBouzer.git"
},
"scripts": {
"app": "pnpm run --filter @mobouzer/mobile-app",
"cli": "pnpm run --filter @mobouzer/admin-cli",
"shared": "pnpm run --filter @mobouzer/shared",
"prepare": "node bin/prepare.js",
"build": "pnpm run -r --if-present build",
"lint": "pnpm run -r --if-present lint",
"lint:fix": "pnpm run -r --if-present lint:fix",
"recrawl": "watchman watch-del ./; watchman watch-project ./"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"lint-staged": "^15.2.2"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^3.2.5"
},
"pnpm": {
"overrides": {
"tslib": "^2.4.1",
"eslint": "8.38.0"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf"
}
}