-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
45
46
47
48
49
{
"name": "mycelium-monorepo",
"private": true,
"packageManager": "pnpm@10.9.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"clean": "turbo run clean",
"dev": "turbo run dev --filter=./packages/*",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"spell": "cspell --no-progress --no-summary '**/*'",
"deploy": "vercel deploy"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@next/eslint-plugin-next": "^15.5.4",
"cspell": "^9.2.1",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "^5.0.0",
"typescript-eslint": "^8.44.1"
},
"dependencies": {
"express": "^5.1.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{ts,tsx,js,jsx,json,md,yml,yaml,css,scss}": [
"prettier --write"
],
"*": [
"cspell --no-progress --no-summary --no-must-find-files"
]
}
}