This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "doorlock",
"private": true,
"description": "Electronic door lock system for home automation",
"version": "1.0.0",
"author": "Antti <antti@antti.codes>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Chicken/DoorLock.git"
},
"bugs": {
"url": "https://github.com/Chicken/DoorLock/issues"
},
"homepage": "https://github.com/Chicken/DoorLock#readme",
"keywords": [
"door",
"lock",
"automation",
"homeautomation",
"iot"
],
"workspaces": [
"server",
"client"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"format": "prettier -w . && turbo run format",
"dev": "FORCE_COLOR=1 NODE_ENV=development turbo run dev",
"update": "yarn upgrade-interactive",
"postinstall": "husky install && yarn workspace server prisma generate"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"devDependencies": {
"@sapphire/ts-config": "^3.3.4",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"pretty-quick": "^3.1.3",
"turbo": "^1.7.2",
"typescript": "^4.9.5"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"quoteProps": "consistent",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
},
"packageManager": "yarn@3.3.1"
}