generated from usagizmo/webapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "webapp-template",
"version": "1.6.2",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install && ./commands/init.sh",
"build": "turbo run build",
"dev": "turbo run dev",
"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": "^3.7.0",
"concurrently": "^8.0.1",
"cspell": "^6.31.1",
"eslint": "^8.41.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"markuplint": "^3.10.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "^1.9.8"
},
"packageManager": "[email protected]"
}