-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 KB
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
{
"name": "clearbreath",
"version": "0.0.2",
"private": true,
"description": "Pranayama and breathing exercise platform",
"author": "PureBreathLabs",
"license": "MIT",
"homepage": "https://clearbreath.life",
"repository": {
"type": "git",
"url": "https://github.com/purebreathlabs/clearbreath.git"
},
"bugs": {
"url": "https://github.com/purebreathlabs/clearbreath/issues"
},
"scripts": {
"dev": "make server-dev",
"server": "make server-dev",
"server:build": "make server-build",
"server:lint": "make server-lint",
"server:test": "make server-test",
"mobile": "make mobile-run",
"mobile:build": "make mobile-build",
"apk": "make apk",
"mobile:analyze": "make mobile-analyze",
"mobile:get": "make mobile-get",
"web": "make web-dev",
"web:build": "make web-build",
"docker:up": "make docker-up",
"docker:down": "make docker-down",
"setup": "make setup",
"db:wipe": "make db-wipe",
"clean": "make clean",
"version:sync": "bash scripts/version-sync.sh",
"version:check": "make version",
"version:patch": "bash scripts/version-bump.sh patch",
"version:minor": "bash scripts/version-bump.sh minor",
"version:major": "bash scripts/version-bump.sh major"
}
}