-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 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
41
42
{
"name": "hiit-workout-app",
"version": "1.0.0",
"description": "A lightweight HIIT (High-Intensity Interval Training) web app for creating custom activities, composing them into workouts, running them with a guided timer, and tracking past sessions. Built with vanilla HTML/CSS/JS on the front end and Node.js + Express on the back end.",
"main": "server.js",
"keywords": [
"hiit",
"workout",
"fitness",
"timer",
"interval-training",
"exercise",
"training",
"health",
"web-app",
"express",
"nodejs",
"javascript",
"vanilla-js",
"full-stack"
],
"scripts": {
"start": "cd server && node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Georgios Lazos",
"license": "MIT",
"dependencies": {
"express": "^4.18.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-portsoc": "^1.0.1"
},
"eslintConfig": {
"extends": "portsoc",
"root": true,
"env": {
"browser": true
}
}
}