-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 914 Bytes
/
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
{
"name": "sanity-events",
"private": true,
"version": "1.0.0",
"main": "package.json",
"workspaces": [
"./apps/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^@core/(.*)$",
"^@server/(.*)$",
"^@ui/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"husky": "^9.0.11",
"prettier": "^3.1.0",
"turbo": "^2.0.0"
},
"packageManager": "npm@10.7.0",
"dependencies": {
"sst": "^3.6.26"
}
}