-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 Bytes
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
{
"name": "yurl",
"private": true,
"scripts": {
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prepare": "bun prepare.js",
"pre-commit": "bunx lint-staged",
"lint": "biome check .",
"lint:apply": "biome check --apply .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"dependencies": {
"typescript": "5.2.2"
},
"devDependencies": {
"@biomejs/biome": "^1.3.1",
"@biomejs/cli-linux-x64": "^1.3.1",
"cypress": "13.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": ["biome check --apply .", "biome format --write ."]
},
"workspaces": [
"apps/nextjs",
"apps/react",
"apps/vue",
"packages/db",
"packages/api",
"packages/express-serverless"
]
}