-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1000 Bytes
/
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
40
41
42
{
"name": "readhn",
"version": "1.0.0",
"description": "A Hacker News reader",
"main": "server.js",
"scripts": {
"test": "jest",
"dev": "DEBUG=readhn nodemon -e js,pug,json -w . -w public",
"prettier": "prettier --write '**/*.{js,json,html}'"
},
"engines": {
"node": "13",
"npm": "6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaelig/readhn.git"
},
"author": "Kaelig Deloumeau-Prigent",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelig/readhn/issues"
},
"homepage": "https://www.read.hn",
"dependencies": {
"compression": "^1.7.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"isomorphic-fetch": "^2.2.1",
"jstransformer-clean-css": "^2.1.0",
"jstransformer-uglify-es": "^0.2.1",
"memjs": "^1.2.2",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"pug": "^2.0.4"
},
"devDependencies": {
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
}
}