-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 991 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "exp-task-tracker",
"version": "1.0.0",
"description": "ExpPoint is a mobile application that gamifies task completion by rewarding users with experience points (EXP). It allows users to create tasks, assign EXP values, track progress, and gain satisfaction from watching their experience bar grow as they complete tasks.",
"main": "index.js",
"scripts": {
"start": "npm run start:server & npm run start:client",
"start:server": "cd server && npm start",
"start:client": "cd client && npm start",
"install:all": "npm install && npm run install:server && npm run install:client",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install",
"setup:db": "cd database && node setup.js",
"build": "cd client && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["task-tracker", "gamification", "experience-points", "productivity"],
"author": "",
"license": "ISC"
}