-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.62 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.62 KB
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
{
"name": "zero-in",
"version": "1.0.0",
"private": true,
"description": "Monorepo for the Zero-In project, including the browser extension and mobile app.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"format": "yarn format:ts && yarn format:kotlin && yarn format:swift",
"format:ts": "prettier --ignore-path .gitignore --ignore-path apps/mobile/.gitignore --write \"**/*.{js,jsx,ts,tsx,vue,css,scss,md,mdx,json,yml,yaml}\"",
"format:kotlin": "ktlint --format 'apps/mobile/**/*.kt' 'apps/mobile/**/*.kts' || true",
"format:swift": "swiftformat apps/mobile --swiftversion 5.9 --exclude '**/node_modules,**/ios/Pods'",
"format-check": "yarn format-check:ts && yarn format-check:kotlin && yarn format-check:swift",
"format-check:ts": "prettier --ignore-path .gitignore --ignore-path apps/mobile/.gitignore --check \"**/*.{js,jsx,ts,tsx,vue,css,scss,md,mdx,json,yml,yaml}\"",
"format-check:kotlin": "ktlint 'apps/mobile/**/*.kt' 'apps/mobile/**/*.kts'",
"format-check:swift": "swiftformat apps/mobile --swiftversion 5.9 --exclude '**/node_modules,**/ios/Pods' --lint",
"lint-staged": "lint-staged",
"postinstall": "simple-git-hooks",
"extension-test-unit": "turbo run test:unit --filter=@zero-in/extension...",
"mobile-test-unit": "turbo run test:unit --filter=@zero-in/mobile..."
},
"devDependencies": {
"lint-staged": "^16.4.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.7.2"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"packageManager": "yarn@4.10.3"
}