-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.18 KB
/
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
42
43
44
45
{
"name": "@sni/deep-monorepo",
"private": true,
"packageManager": "[email protected]",
"license": "GPL-3.0",
"scripts": {
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix --cache .",
"test": "turbo run test --no-daemon",
"codegen": "turbo run codegen --no-daemon",
"format": "prettier --cache --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{json,md,js,ts,svelte}": [
"prettier --write"
],
"*.{json,js,ts,svelte}": [
"eslint --fix --quiet"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"checkly": "^4.8.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.1.3",
"eslint-plugin-boundaries": "4.2.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-svelte": "2.44.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.7",
"turbo": "2.1.3",
"turbo-ignore": "2.1.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": "~9.4.0"
}
}