-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
{
"name": "mopl",
"private": true,
"pnpm": {
"overrides": {
"esbuild": "0.25.12"
},
"patchedDependencies": {
"@gorhom/bottom-sheet@5.2.8": "patches/@gorhom__bottom-sheet@5.2.8.patch"
}
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:admin": "turbo dev --filter=admin",
"lint": "turbo lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{js,ts,tsx,jsx,mjs,hbs,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,jsx,mjs,hbs,json,css,md}\"",
"svgr:admin": "pnpm dlx @svgr/cli apps/admin/public/svg --out-dir apps/admin/src/assets/svg --no-prettier && prettier --write \"apps/admin/src/assets/svg/**/*.{ts,tsx}\"",
"ci:lint": "turbo lint --filter=admin --filter=@repo/pointer-editor-v2",
"ci:typecheck": "turbo run typecheck --filter=admin --filter=@repo/pointer-editor-v2",
"ci:build": "turbo build --filter=admin --filter=@repo/pointer-editor-v2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"postcss": "^8.5.1",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.0.4",
"turbo": "^2.4.0",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}