-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 KB
/
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
{
"name": "heartbeat",
"version": "1.0.0",
"description": "A webpage that periodically updates itself based on the last ping it recieved from my computer.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "npx nodemon --ignore '*.json' index.js",
"prettier-check": "prettier --check .",
"prettier-format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/chebro/heartbeat-js.git"
},
"author": "chebro",
"license": "MIT",
"bugs": {
"url": "https://github.com/chebro/heartbeat-js/issues"
},
"homepage": "https://github.com/chebro/heartbeat-js#readme",
"devDependencies": {
"eslint": "^8.12.0",
"nodemon": "^2.0.14",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"simple-git-hooks": "^2.7.0"
},
"dependencies": {
"asciichart": "^1.5.25",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
}
}