-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "daybreak",
"version": "0.1.1",
"private": true,
"license": "BSD-3-Clause",
"devDependencies": {
"@fitbit/sdk": "6.1.0",
"@fitbit/sdk-cli": "1.7.3",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3"
},
"fitbit": {
"appUUID": "f699d853-0d3d-48b5-99a1-ac71f69b30d6",
"appType": "clockface",
"appDisplayName": "DayBreak",
"wipeColor": "#607d8b",
"requestedPermissions": [
"access_heart_rate",
"access_location",
"run_background",
"access_activity"
],
"buildTargets": [
"atlas",
"vulcan"
],
"i18n": {
"en-US": {
"name": "DayBreak"
}
},
"defaultLanguage": "en-US"
},
"scripts": {
"build": "fitbit-build",
"debug": "fitbit",
"lint": "eslint --cache \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"./**/*.{js,jsx,ts,tsx}\"",
"format": "prettier -w ."
}
}