-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
46
47
48
49
{
"name": "styrsomissionskyrka",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,php}\"",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@prettier/plugin-php": "^0.17.6",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"turbo": "1.1.1"
},
"lint-staged": {
"*.{mjs,cjs,js,ts,jsx,tsx,json,md,yml,html,php}": "prettier --write",
"*.{mjs,cjs,js,ts,jsx,tsx}": "eslint --fix"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"arrowParens": "always",
"printWidth": 120,
"importOrder": [
"^@smk/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"packageManager": "[email protected]"
}