-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 952 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
{
"fitbit": {
"appUUID": "76cbb16a-1739-487f-9025-0d942006326d",
"appType": "app",
"appDisplayName": "Spotify Ctrl",
"iconFile": "resources/icon.png",
"wipeColor": "#607d8b",
"requestedPermissions": [
"access_internet"
],
"buildTargets": [
"higgs",
"meson"
],
"i18n": {
"en": {
"name": "Spotify Ctrl"
}
}
},
"devDependencies": {
"@fitbit/sdk": "^3.0.1",
"fitbit-sdk-types": "^4.1.3",
"io-ts": "^1.8.2",
"nodemon": "^1.18.10",
"prettier": "^1.17.0",
"tslint": "^5.16.0"
},
"dependencies": {
"@fitbit/sdk-cli": "^1.6.0"
},
"scripts": {
"build": "fitbit-build",
"watch": "nodemon --exec npm run build",
"lint": "tslint --project .",
"check-formatting": "prettier -c **/*.ts",
"ci": "npm run build && npm run lint && npm run check-formatting"
},
"nodemonConfig": {
"ext": "ts,tsx,png,gui,css,json"
}
}