-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "clients",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "dotenv -- 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.9.0",
"concurrently": "^8.2.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.47.0",
"eslint-config-custom": "workspace:*",
"lint-staged": "^15.0.0",
"markuplint": "^3.12.0",
"prettier": "^3.0.2",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"sharp": "^0.32.5",
"svgo": "^3.0.2",
"turbo": "^1.10.12",
"vite-plugin-image-optimizer": "^1.1.7"
},
"packageManager": "[email protected]"
}