-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1.2 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
{
"name": "webapp-template",
"version": "2.4.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky && ./commands/init.sh",
"generate": "turbo run generate",
"build": "turbo run build",
"lint:cspell": "cspell --exclude \"apps/**/*\" --exclude \"packages/**/*\" \"**/*\"",
"lint:prettier": "prettier . --check --ignore-path=.prettierignore.root",
"lint:packages": "turbo run lint",
"lint": "concurrently pnpm:lint:*",
"test": "turbo run test",
"format:cspell": "./commands/format-project-words.sh",
"format:prettier": "prettier . --write --ignore-path=.prettierignore.root",
"format:packages": "turbo run format",
"format": "concurrently pnpm:format:*"
},
"devDependencies": {
"@markuplint/svelte-parser": "^4.6.9",
"@repo/eslint-config": "workspace:*",
"concurrently": "^9.0.1",
"cspell": "^8.15.4",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markuplint": "^4.10.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.2.3"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}