-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 794 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 794 Bytes
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
{
"name": "twinkly-web",
"private": true,
"version": "1.0.0",
"lint-staged": {
"*": "npm run fix"
},
"workspaces": [
"./client",
"./server"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace client\" \"npm run dev --workspace server\"",
"build": "npm run build --workspaces",
"fix": "biome check --write .",
"lint": "biome check .",
"prepare": "husky"
},
"keywords": [],
"author": "Justin Beckwith <justin.beckwith@gmail.com>",
"license": "MIT",
"description": "A web dashboard for controlling those Twinkly lights",
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.0.0"
},
"dependencies": {
"@uiw/react-color-wheel": "^2.3.4"
}
}