-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (35 loc) · 1.2 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
{
"name": "journalxp",
"version": "3.1.0",
"description": "JournalXP is a game-like mental health journaling app that helps users build healthy habits, track their mood, and reflect through daily journaling, all while earning points and leveling up thier wellness journey.",
"private": true,
"workspaces": [
"frontend",
"functions",
"shared"
],
"scripts": {
"dev:front": "cd frontend && npm run dev",
"dev:functions": "cd functions && npm run serve",
"dev:all": "firebase emulators:start",
"build:front": "cd frontend && npm run build",
"build:functions": "cd functions && npm run build",
"build": "npm run build:front && npm run build:functions",
"preview:front": "cd frontend && npm run preview",
"deploy": "npm run build && firebase deploy",
"deploy:hosting": "npm run build:front && firebase deploy --only hosting",
"deploy:functions": "cd functions && npm run build && cd .. && firebase deploy --only functions",
"setup": "bash setup.sh"
},
"keywords": [
"Mental Health",
"TypeScript",
"JavaScript"
],
"author": "Nathaniel E. Paz",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
}
}